Public beta

Pagination & filtering

All list endpoints use cursor-based pagination. Cursors are stable — new resources inserted between pages do not shift existing pages.

Query parameters

  • limit — number of items to return. Default 20, max 100.
  • starting_after — cursor (an ID) returned in the previous page’s next_cursor.
  • ending_before — for paging backwards.

Filtering

List endpoints accept resource-specific filters as query strings. For deliveries: status, created_after, created_before.

curl "https:">//api.zippex.com/v1/deliveries?limit=50&status=in_transit" \
  -H "Authorization: Bearer zx_test_abc123def456"
{
  "data": [
    {
      "id": "del_001",
      "status": "in_transit"
    },
    {
      "id": "del_002",
      "status": "in_transit"
    }
  ],
  "has_more": true,
  "next_cursor": "del_002"
}