curl --request GET \
--url https://api.yorlet.com/v1/prices \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "price",
"active": true,
"amount": 123,
"currency": "gbp",
"default_tax_rate": "<string>",
"default_transfer_destination": "<string>",
"description": "<string>",
"product": "<string>",
"recurring": {
"interval": "month",
"interval_count": 123
},
"transfer_behavior": "owner",
"type": "recurring",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}List all prices
curl --request GET \
--url https://api.yorlet.com/v1/prices \
--header 'Authorization: <api-key>'{
"count": 1,
"has_more": false,
"object": "list",
"data": [
{
"id": "<string>",
"created": 123,
"object": "price",
"active": true,
"amount": 123,
"currency": "gbp",
"default_tax_rate": "<string>",
"default_transfer_destination": "<string>",
"description": "<string>",
"product": "<string>",
"recurring": {
"interval": "month",
"interval_count": 123
},
"transfer_behavior": "owner",
"type": "recurring",
"account": "<string>",
"deleted": false,
"metadata": {}
}
]
}API Key authentication. Use "Bearer YOUR_API_KEY".
Was this page helpful?