GET
/
v1
/
products
curl --request GET \
  --url https://api.hyperline.co/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 1,
    "taken": 1,
    "skipped": 123
  },
  "data": [
    {
      "id": "itm_3kXODDF42QXtnL",
      "name": "Product name",
      "description": "Product internal description",
      "public_description": "Product public description",
      "type": "flat_fee",
      "properties": {},
      "translations": {},
      "custom_properties": {},
      "is_available_on_subscription": true,
      "is_available_on_demand": true
    }
  ]
}

Authorizations

Authorization
string
headerrequired

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

Query Parameters

take
number | null
default: 50
skip
number | null
default: 0

Response

200 - application/json
meta
object
required
data
object[]
required

List of Product.