GET
/
products
List 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

List of products

id
string
Example:

"prod_123456789"

name
string
Example:

"Sales Engagement Pro"

description
string
Example:

"Sales Engagement Pro is an AI-powered platform that helps sales teams automate and optimize their outreach efforts..."

createdAt
string<date-time>
Example:

"2023-05-10T08:15:00Z"