cURL
basic
curl --request POST \ --url https://app.tagadapay.com/api/public/v1/products/list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "storeId": "store_123", "page": 1, "per_page": 20 } '
{ "items": [ { "id": "prod_123", "name": "Premium Plan", "description": "Our premium subscription plan", "image": "https://example.com/image.jpg", "price": { "recurring": true, "interval": "month", "intervalCount": 1, "currencyOptions": { "USD": { "amount": 2999 }, "EUR": { "amount": 2599 } } } } ], "pagination": { "hasNext": false, "totalItems": 1, "nextPage": null, "previousPage": null } }
Get all products for a specific store with filtering, sorting, and pagination
Enter your API key as: Bearer your-api-key
Bearer your-api-key
10 <= x <= 1000
name
description
price
created_at
asc
desc
Show child attributes
Successful response