Authorizations
API key authentication
Query Parameters
Filter prices by billable metric ID
Number of prices to return
Required range:
1 <= x <= 100
Number of prices to skip
Required range:
x >= 0
curl --request GET \
--url https://api.paygentic.io/v0/prices \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "price",
"billableMetricId": "<string>",
"model": "standard",
"invoiceDisplayName": "<string>",
"properties": {
"unitPrice": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
curl --request GET \
--url https://api.paygentic.io/v0/prices \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "price",
"billableMetricId": "<string>",
"model": "standard",
"invoiceDisplayName": "<string>",
"properties": {
"unitPrice": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
API key authentication
Filter prices by billable metric ID
Number of prices to return
1 <= x <= 100
Number of prices to skip
x >= 0