
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
magento-api-rest
Advanced tools
A Node.js client wrapper to work with the Magento REST API.
npm i magento-api-rest
Generate API credentials by following these instructions.
Make sure to check the resource access is as per your requirements to prevent misuse of the API Keys.
Check out the Magento API endpoints and data that can be manipulated in these docs.
import Magento from "magento-api-rest";
const client = new Magento({
'url': 'https://magento.dev',
'consumerKey': '<OAuth 1.0a consumer key>',
'consumerSecret': '<OAuth 1.0a consumer secret>',
'accessToken': '<OAuth 1.0a access token>',
'tokenSecret': '<OAuth 1.0a access token secret>',
});
const Magento = require('magento-api-rest').default;
const client = new Magento({
'url': 'https://magento.dev',
'consumerKey': '<OAuth 1.0a consumer key>',
'consumerSecret': '<OAuth 1.0a consumer secret>',
'accessToken': '<OAuth 1.0a access token>',
'tokenSecret': '<OAuth 1.0a access token secret>',
});
Option | Type | Required | Description |
---|---|---|---|
url | String | yes | Your Store URL |
consumerKey | String | yes | Your API consumer key |
consumerSecret | String | yes | Your API consumer secret |
accessToken | String | yes | Your API Access Token |
tokenSecret | String | yes | Your API Access Token Secret |
type | String | no | Magento endpoint type, default is 'V1' |
sha | Number | no | Magento SHA type, default is '1' |
timeout | Number | no | Request Timeout |
axiosConfig | Object | no | Reference |
If you want to use the Asynchronous Endpoints set type
to async/V1
.
If you want to use the Bulk Endpoints set type
to async/bulk/V1
.
If you want to change the sha version, values can be 1 or 256.
.get(endpoint)
.get(endpoint, params)
Params | Type | Description |
---|---|---|
endpoint | String | Magento API endpoint, example: orders |
params | Object | JSON object to be sent as params. |
.post(endpoint, data)
Params | Type | Description |
---|---|---|
endpoint | String | Magento API endpoint, example: shipments |
data | Object | JSON object to be sent as body. |
.put(endpoint, data)
Params | Type | Description |
---|---|---|
endpoint | String | Magento API endpoint, example: shipments/12 |
data | Object | JSON object to be sent as body. |
.delete(endpoint, data)
Params | Type | Description |
---|---|---|
endpoint | String | Magento API endpoint, example: orders/12 |
data | Object | JSON object to be sent as body. |
Requests are made with Axios library with support to promises.
let params = {
"filter_groups": [
{
"filters": [
{
"field": "created_at",
"value": "2019-08-03 11:22:47",
"condition_type": "from"
}
]
},
{
"filters": [
{
"field": "created_at",
"value": "2020-08-03 11:22:47",
"condition_type": "to"
}
]
}
],
"sort_orders": [
{
"field": "created_at",
"direction": "desc"
}
],
"page_size": 200,
"current_page": 1
}
Or, you can use the parser to write the above query as:
let params = {
$from: "2019-08-03 11:22:47",
$to: "2020-08-03 11:22:47",
$sort: {
"created_at": "desc"
},
$perPage: 200,
$page: 1
}
You cannot use both the param writing styles together. Parser is triggered automatically if you use any of the keys.
Operator | Description | Notes |
---|---|---|
$or | Execute OR queries. | Syntax: $or:[ { condition1 }, { condition2 }] |
$from | Starting point of search via ISO date. | Requires $to. |
$to | Ending point of search via ISO date. | Requires $from. |
$after | Search after a specific ISO date. | Exclusive. |
$before | Search before a specific ISO date. | Exclusive. |
$sort | Sort the data. | |
$perPage | Specifies the per page data. | |
$page | Specifies the current page. |
By default { key: value } translates to an "eq" operation where key = value.
To get more information as to how to form search queries, use the following reference.
If you want to use the above object in a request,
async function getOrders () {
try {
let { data } = await client.get('orders', params);
// Response Handling
} catch (err) {
// Error Handling
}
}
Error Handling is same as how Axios handles it.
FAQs
A NodeJS wrapper to work with Magento REST APIs.
The npm package magento-api-rest receives a total of 282 weekly downloads. As such, magento-api-rest popularity was classified as not popular.
We found that magento-api-rest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.