Skip to main content
GET
/
products
List products
curl --request GET \
  --url https://public-api.replo.app/api/v1/public/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Replo-Api-Version: <replo-api-version>'
{
  "object": "list",
  "data": [
    {
      "object": "product",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "description": "<string>",
      "slug": "<string>",
      "type": "<string>",
      "externalCheckoutUrl": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Replo-Api-Version
enum<string>
required

The public API version to use for this request.

Available options:
2026-06-27

Query Parameters

cursor
string
Required string length: 1 - 200
limit
integer
Required range: x <= 100
projectId
string<uuid>
required
query
string
Required string length: 1 - 255

Response

List products

object
enum<string>
required
Available options:
list
data
object[]
required
has_more
boolean
required
next_cursor
string | null
required