v1

latestOpenAPI 3.0.1MIT2026-07-13153492.5 KB

Retrieve a list of up to 50 products. If you have more than 50, you can paginate this endpoint.

get/tax/products

Query parameters

cursorstring

The product ID to start pagination from. This is the last product ID retrieved from the previous list request. An example path looks like /tax/products?cursor=p-20506

Response

List of products

has_moreboolean

This will be either true or false depending on if there are more products to be returned in the next request.

last_product_idstring

The ID of the last product returned in the response. This can be used as a cursor for pagination.

Example response

{
  "last_product_id": "p-20507",
  "products": [
    {
      "object": "tax.product",
      "reference_product_id": "p-20506",
      "reference_product_name": "Red Shoes",
      "product_category": "CLOTHING_GENERAL",
      "created_at": 1721694425,
      "updated_at": 1721694425
    }
  ]
}