FeaturesPricingHow it WorksDevelopers
API DOCS v1.0

Developers

Build custom integrations, sync inventory, and automate workflows with the Choppa REST API. Everything you need is right here.

bash — curl
# Fetch all active products
curl -X GET https://api.choppa.shop/v1/products \
-H "Authorization: Bearer sk_live_xxxxxxxxxxx" \
-H "Content-Type: application/json"

{
"object": "list",
"data": [
{ "id": "prod_123", "name": "Classic T-Shirt", "price": 4500 }
]
}
$

Authentication

Authenticate your API requests by including your secret API key in the Authorization header. Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.

Authorization: Bearer YOUR_SECRET_KEY

Rate Limits

We enforce rate limits to ensure stability. You can perform up to 100 requests per minute per IP address. Exceeding this limit will return a HTTP 429 Too Many Requests response.