
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
n8n-nodes-amazon-selling-partner
Advanced tools
Custom n8n node for the Amazon Selling Partner API
A production-grade n8n custom node for Amazon Selling Partner API with comprehensive error handling, rate limiting, monitoring, and security features.
npm install n8n-nodes-amazon-selling-partner
n8n-nodes-amazon-selling-partner
For most use cases, you only need LWA credentials:
If your application requires AWS SigV4 signing:
Note: Most SP-API operations work with LWA-only authentication. AWS credentials are only needed for specific advanced operations or if your application configuration requires it.
{
"resource": "orders",
"operation": "getOrders",
"marketplaceIds": ["ATVPDKIKX0DER"],
"createdAfter": "2024-01-01T00:00:00Z",
"createdBefore": "2024-01-31T23:59:59Z"
}
{
"resource": "orders",
"operation": "getOrder",
"orderId": "123-1234567-1234567"
}
{
"resource": "orders",
"operation": "getOrderItems",
"orderId": "123-1234567-1234567",
"returnAll": true
}
{
"resource": "orders",
"operation": "getOrders",
"marketplaceIds": ["ATVPDKIKX0DER", "A2EUQ1WTGCTBG2"],
"createdAfter": "2024-01-01T00:00:00Z",
"createdBefore": "2024-01-07T23:59:59Z",
"additionalOptions": {
"orderStatuses": ["Unshipped", "PartiallyShipped"],
"fulfillmentChannels": ["AFN"],
"maxResultsPerPage": 50,
"returnAll": true
}
}
{
"resource": "finance",
"operation": "listFinancialEventGroups",
"financialEventGroupStartedAfter": "2024-01-01T00:00:00Z",
"financialEventGroupStartedBefore": "2024-01-31T23:59:59Z",
"additionalOptions": {
"maxResultsPerPage": 100,
"returnAll": true
}
}
{
"resource": "finance",
"operation": "listFinancialEvents",
"postedAfter": "2024-01-01T00:00:00Z",
"postedBefore": "2024-01-31T23:59:59Z",
"additionalOptions": {
"maxResultsPerPage": 100,
"returnAll": false
}
}
{
"resource": "finance",
"operation": "listFinancialEventsByGroupId",
"eventGroupId": "12345678901234567890123456789012",
"postedAfter": "2024-01-01T00:00:00Z",
"additionalOptions": {
"maxResultsPerPage": 50,
"returnAll": true
}
}
{
"resource": "finance",
"operation": "listFinancialEventsByOrderId",
"orderId": "123-1234567-1234567",
"additionalOptions": {
"returnAll": false
}
}
{
"resource": "finance",
"operation": "listTransactions",
"postedAfter": "2024-01-01T00:00:00Z",
"postedBefore": "2024-01-31T23:59:59Z",
"marketplaceId": "ATVPDKIKX0DER",
"additionalOptions": {
"maxResultsPerPage": 100,
"returnAll": true
}
}
ATVPDKIKX0DER
A2EUQ1WTGCTBG2
A1AM78C64UM0Y8
A2Q3Y263D00KWC
A1F83G8C2ARO7P
A1PA6795UKMFR9
A13V1IB3VIYZZH
APJ6JRA9NG5V4
A1RKKUPIHCS9HS
A1805IZSGTT6HS
A2NODRKZP88ZB9
A1C3SOZRARQ6R3
A1VC38T7YXB528
A39IBJ37TRP1C6
A19VAU5U5O7RUS
A2VIGQ35RCS4UG
A17E79C6D8DWNP
A21TJRUUN4KGV
This node implements Amazon's token bucket algorithm for rate limiting:
git clone https://github.com/your-org/n8n-nodes-amazon-selling-partner.git
cd n8n-nodes-amazon-selling-partner
npm install
npm run build
# Run all tests
npm test
# Run tests in Docker (as per project convention)
npm run test:docker
# Run with coverage
npm test -- --coverage
# Lint code
npm run lint
# Fix linting issues
npm run lintfix
# Format code
npm run format
Enable debug logging by setting the environment variable:
export DEBUG=n8n-amazon-sp-api:*
git checkout -b feature/amazing-feature
)git commit -m 'Add amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.
Note: This is an unofficial community-maintained node. It is not affiliated with or endorsed by Amazon or n8n.
FAQs
Custom n8n node for the Amazon Selling Partner API
The npm package n8n-nodes-amazon-selling-partner receives a total of 74 weekly downloads. As such, n8n-nodes-amazon-selling-partner popularity was classified as not popular.
We found that n8n-nodes-amazon-selling-partner demonstrated a healthy version release cadence and project activity because the last version was released less than 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.