Skip to main content
GET
/
v1
/
products
List all available products (catalog)
curl --request GET \
  --url http://0.0.0.0:3000/v1/products \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "type": "<string>",
    "description": "<string>",
    "price": 123,
    "gateway_price_id": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

List of products

id
integer
name
string
type
string
description
string | null
price
integer | null

Price in cents

gateway_price_id
string | null