GET
/
products
curl --request GET \
  --url https://api.kakiyo.com/v1/products \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "prod_123456789",
    "name": "Sales Engagement Pro",
    "description": "Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts...",
    "createdAt": "2023-05-10T08:15:00Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

200
application/json

List of products

The response is of type object[].