v44

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-20129390589.6 KB
Provider

List provider orders

Lists executed orders for a provider within a time window. Orders are sorted by execution time (most recent first) and use cursor-based pagination. Use starting_after or ending_before with a cursor to paginate through results.

get/v1/provider/orders

Query parameters

provider_idstring

Optional provider identifier (admins only)

start_timestring date-time

Inclusive start of the time window (ISO8601, UTC)

end_timestring date-time

Exclusive end of the time window (ISO8601, UTC). Defaults to now.

limitinteger

Number of orders to return (1-500, default 50)

starting_afterstring

Opaque cursor string with format 'poc_base62_encoded_data' used for paginating provider orders

Cursor for forward pagination

ending_beforestring

Opaque cursor string with format 'poc_base62_encoded_data' used for paginating provider orders

Cursor for backward pagination

Response

Successfully retrieved provider orders

object'list' required
has_moreboolean required

Example response

{
  "object": "list",
  "data": [
    {
      "object": "provider_order"
    }
  ],
  "summary": {
    "object": "provider_orders_summary"
  }
}