GET
/
api
/
v3
/
marketplace
/
products
curl --request GET \
  --url https://app.staging.sendo.so/api/v3/marketplace/products \
  --header 'Authorization: Bearer <token>'
{
  "pagination": {
    "after": "<string>",
    "next_page": {
      "url": "<string>"
    }
  },
  "categories": [
    {
      "group_name": "<string>",
      "children": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  ],
  "products": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "variants": [
        {
          "id": "<string>",
          "estimated_total_price": {
            "currency": "<string>",
            "price_per_unit": "<string>"
          },
          "images": [
            {
              "url": "<string>",
              "cdn_main": {
                "url": "<string>"
              },
              "cdn_thumbnail": {
                "url": "<string>"
              }
            }
          ]
        }
      ]
    }
  ]
}

Required Auth Scopes

marketplace

Parameters

after
string

The start for cursor for pagination. This is returned in the pagination object of the previous response.

price_gte_usd
integer

The minimum price of products in USD.

price_lte_usd
integer

The maximum price of products in USD.

ship_to_country_codes[]
array<string>

The country codes to ship to.

category_ids[]
array<string>

Category IDs to filter products by.

Filter products by exact text search.

Response

pagination
object
required

Pagination information.

categories
array
required

List of group of nested categories in the marketplace for the result set.

products
array
required

List of products in the marketplace