Skip to main content
POST
/
billing
/
credits
/
checkout
Create Credit Pack Checkout
curl --request POST \
  --url https://api.example.com/billing/credits/checkout \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "pack_id": "p500"
}
'
{
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
pack_id
enum<string>
required
Available options:
p500,
p2500,
p10000,
p50000

Response

Successful Response

url
string
required