Storefront REST API & Product Endpoints
Build custom frontends or mobile apps using the Hazaans high-speed headless Storefront API.
5 min readUpdated February 2026Hazaans Documentation Team
Hazaans provides a high-performance REST API designed for headless storefronts, custom mobile apps, and third-party inventory management tools.
Fetching Products
Retrieve active products for any store using standard HTTP GET requests.
bash
curl -X GET 'https://hazaans.com/api/shipping/partners' \
-H 'Content-Type: application/json'Response Schema
All endpoints return standard JSON payloads with ISO timestamps and typed currency strings.
json
{
"success": true,
"store": {
"id": "78074d1b-3495-4b57-9377-527e104f53e6",
"name": "Urban Edge",
"currency": "USD"
},
"products": [
{
"id": "prod_89234",
"name": "Wireless Noise-Canceling Headphones",
"price": 89.99,
"in_stock": true
}
]
}