Orders

List orders

List orders for the authenticated developer with cursor-based pagination.

get/api/v1/orders

Query parameters

limitinteger

Maximum number of results to return (default 100)

afterstring
beforestring

Response

Paginated list of orders

Example response

{
  "data": [
    {
      "checkoutIntentId": "ci_aaa8af5c5aae4c0e8ef0172c26c65c13",
      "buyer": {
        "postalCode": "10001",
        "country": "US",
        "province": "NY",
        "city": "New York",
        "address2": "Apt 1",
        "address1": "123 Main St",
        "phone": "1234567890",
        "email": "john.doe@example.com",
        "lastName": "Doe",
        "firstName": "John"
      },
      "createdAt": "2026-03-25T00:00:00Z",
      "updatedAt": "2026-03-27T00:00:00Z",
      "referenceId": "order-1234"
    }
  ]
}

Changes