GET
/
products
{
  "has_more": true,
  "next_cursor": "<string>",
  "items": [
    {
      "id": 123,
      "label": "<string>",
      "description": "<string>",
      "external_reference": "<string>",
      "price_before_tax": "<string>",
      "vat_rate": "exempt",
      "price": "<string>",
      "unit": "piece",
      "currency": "AED",
      "reference": "<string>",
      "ledger_account": {
        "id": 123,
        "url": "<string>"
      },
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ]
}

Query Parameters

cursor
string | null

The cursor from which to start the pagination

limit
number
default:100

The number of items to return per page

Required range: 1 <= x <= 2000
sort
enum<string>
default:-created_at

Possible sorts for the products

Available options:
-created_at
filter
object[]

Filter available for the products

Response

200

has_more
boolean
required
items
object[]
required
next_cursor
string | null