curl --request GET \
--url https://api.yorlet.com/v1/products \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "product",
"active": true,
"default_price": "<string>",
"description": "<string>",
"name": "<string>",
"statement_descriptor": "<string>",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}List all products
curl --request GET \
--url https://api.yorlet.com/v1/products \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "product",
"active": true,
"default_price": "<string>",
"description": "<string>",
"name": "<string>",
"statement_descriptor": "<string>",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
Was this page helpful?