API Documentation & SDKs
- Introduction
- Code Integration Tutorial
- SDKs - Node, Python, PHP, Go, Ruby, Java & Kotlin
- Payments Integration Guide
- Subscription Integration Guide
- Mobile Integration Guide
- On Demand Subscriptions
- Webhooks Details
- Managing Products Via API
- Overlay Checkout (Beta)
- Metadata Guide
- Configuring Allowed Payment Methods
- MCP Server
- Technical - FAQs
- Error Codes
Payments
Subscriptions
Discounts
Licenses
Customers
Products
Payouts
Miscellaneous
Addons
List Addons
Retrieve a comprehensive list of all available addons
GET
/
addons
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
async function main() {
// Automatically fetches more pages as needed.
for await (const addonResponse of client.addons.list()) {
console.log(addonResponse.id);
}
}
main();
{
"items": [
{
"business_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "AED",
"description": "<string>",
"id": "<string>",
"image": "<string>",
"name": "<string>",
"price": 123,
"tax_category": "digital_products",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Page size default is 10 max is 100
Required range:
x >= 0
Page number default is 0
Required range:
x >= 0
Response
200 - application/json
List all addons
The response is of type object
.
import DodoPayments from 'dodopayments';
const client = new DodoPayments({
bearerToken: process.env['DODO_PAYMENTS_API_KEY'], // This is the default and can be omitted
});
async function main() {
// Automatically fetches more pages as needed.
for await (const addonResponse of client.addons.list()) {
console.log(addonResponse.id);
}
}
main();
{
"items": [
{
"business_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "AED",
"description": "<string>",
"id": "<string>",
"image": "<string>",
"name": "<string>",
"price": 123,
"tax_category": "digital_products",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.