Prices
Retrieve a price
Prices
Retrieve a price
Retrieves all the information of an already-existing price by providing it’s unique identifier (ID).
GET
/
prices
/
{id}
curl --request GET \
--url https://pay.chargily.net/test/api/v2/prices/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "01hhy57e5j3xzce7ama8gtk7m0",
"entity": "price",
"livemode": false,
"amount": 200,
"currency": "dzd",
"metadata": null,
"created_at": 1702892910,
"updated_at": 1702892910,
"product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}
Path parameters
The ID of the price.
Returns
If a valid ID is provided, it returns a price object.
{
"id": "01hhy57e5j3xzce7ama8gtk7m0",
"entity": "price",
"livemode": false,
"amount": 200,
"currency": "dzd",
"metadata": null,
"created_at": 1702892910,
"updated_at": 1702892910,
"product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}
curl --request GET \
--url https://pay.chargily.net/test/api/v2/prices/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "01hhy57e5j3xzce7ama8gtk7m0",
"entity": "price",
"livemode": false,
"amount": 200,
"currency": "dzd",
"metadata": null,
"created_at": 1702892910,
"updated_at": 1702892910,
"product_id": "01hhy57dnhxf6pq4zcmw7tjnp6"
}