Skip to main content
GET
https://pay.chargily.net/test/api/v2
/
prices
/
{id}
Retrieve a price
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

id
string
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"
}