Your Ecommerce API for serious shipping
Products, carts, orders, payments and inventory—built for speed, predictable behavior, and clean DX. Start in minutes, scale to millions.
Features built for production
A modern contract: predictable behavior, strong security, and building blocks you can trust.
Standardized error envelopes, typed validation details, and explicit API versions to keep integrations stable.
Core endpoints
A clean, opinionated surface: the stuff you need, the way you expect.
{
"data": [
{ "id": 101, "name": "Leather Sneakers", "price": 129.00, "currency": "GBP" },
{ "id": 102, "name": "Classic Hoodie", "price": 89.00, "currency": "GBP" }
],
"meta": {
"page": 1,
"per_page": 20,
"total": 238,
"has_more": true
}
}
{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid payload",
"details": {
"email": ["The email field must be a valid email address."],
"items.0.qty": ["The qty must be at least 1."]
}
}
}
Quickstart
Copy, paste, ship. Use your API key and start listing products or creating orders.
# 1) Set your API key (server-side recommended)
API_KEY="YOUR_API_KEY"
# 2) List products (search + pagination)
curl -s "https://tencent.airbites.org/api/v1/products?query=sneakers&page=1" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_KEY}" | jq
# 3) Create an order (safe retries)
curl -s "https://tencent.airbites.org/api/v1/orders" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${API_KEY}" \
-H "Idempotency-Key: 3f8c2b2e-6c53-4fd4-ae13-9a2b4c0d2a11" \
-d '{
"customer": {"email":"alex@example.com"},
"items": [{"product_id": 101, "qty": 1}],
"currency": "GBP"
}'
FAQ
Common integration questions—answered quickly.