Skip to main content
GET
/
products
List Products
curl --request GET \
  --url https://{defaultHost}/products \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "title": "<string>",
      "visibility": "<string>",
      "headline": "<string>",
      "verified": true,
      "member_count": 123,
      "route": "<string>",
      "published_reviews_count": 123,
      "external_identifier": "<string>",
      "metadata": {}
    }
  ],
  "page_info": {
    "end_cursor": "<string>",
    "start_cursor": "<string>",
    "has_next_page": true,
    "has_previous_page": true
  }
}

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token.

Headers

Api-Version-Date
string<date>

Pins the request to a dated API version. When omitted, the request uses the original (2025-01-01) request/response shapes, so existing unversioned callers are never broken. Generated SDKs always send the latest version they were built against. An unrecognized value is rejected with a 400. The schemas documented here always describe the latest version.

Example:

"2026-06-09"

Query Parameters

company_id
string
required

The unique identifier of the company to list products for.

visibilities
string[]

Filter to only products matching these visibility states.

access_pass_types
string[]

Filter to only products matching these types.

direction
enum<string>

The sort direction for results. Defaults to descending.

Available options:
asc,
desc
order
string

The field to sort results by. Defaults to created_at.

first
integer

The number of products to return (default and max 100).

after
string

A cursor; returns products after this position.

last
integer

The number of products to return from the end of the range.

before
string

A cursor; returns products before this position.

Response

products listed

data
object[]
required
page_info
object
required