List store orders
List a store's orders newest first as summaries.
List a store's orders newest first as summaries. Filter by status, payment or fulfilment status, customer email, order number or a free-text query. Amounts are in the smallest currency unit. Retrieve a single order for its line items, addresses and fulfilments.
API Token authentication
The ID of the store to list orders for.
store_01J8Z5F8W9K8M4A7B3C2D1E0FGCustomer email, matched exactly.
buyer@example.comThe order number the merchant and customer see.
1042Free-text search over customer name, email, order number and line items.
blue shirtEarliest creation time to include, inclusive. Accepts a date or ISO date-time (UTC).
2026-01-01Latest creation time to include, inclusive. A bare date covers that whole day.
2026-01-31Page number
1Success response
Unauthenticated response
Error response
GET /api/ecommerce/v1/stores/{store_id}/orders HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"id": "order_01J8Z5F8W9K8M4A7B3C2D1E0FG",
"display_id": 1042,
"status": "pending",
"payment_status": "captured",
"fulfillment_status": "not_fulfilled",
"total": 4999,
"currency_code": "usd",
"customer_email": "buyer@example.com",
"item_count": 3,
"created_at": "2026-01-21T07:35:04.000000Z"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 100
}
}Last updated
Was this helpful?