For the complete documentation index, see llms.txt. This page is also available as Markdown.

List store orders

List a store's orders newest first as summaries.

List store orders

get

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.

Authorizations
AuthorizationstringRequired

API Token authentication

Path parameters
store_idstringRequired

The ID of the store to list orders for.

Example: store_01J8Z5F8W9K8M4A7B3C2D1E0FG
Query parameters
emailstringOptional

Customer email, matched exactly.

Example: buyer@example.com
display_idstringOptional

The order number the merchant and customer see.

Example: 1042
qstringOptional

Free-text search over customer name, email, order number and line items.

Example: blue shirt
created_at_fromstringOptional

Earliest creation time to include, inclusive. Accepts a date or ISO date-time (UTC).

Example: 2026-01-01
created_at_tostringOptional

Latest creation time to include, inclusive. A bare date covers that whole day.

Example: 2026-01-31
pageintegerOptional

Page number

Example: 1
Responses
200

Success response

application/json
get/api/ecommerce/v1/stores/{store_id}/orders
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?