Skip to main content
POST
/
v1
/
billing
/
topup
Create top-up checkout session
curl --request POST \
  --url https://reelmirror.com/api/v1/billing/topup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount_cents": 123
}
'
{
  "data": {
    "url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key (rm_xxx) or JWT token

Body

application/json
amount_cents
integer
required

Amount in cents to top up. Must be one of the supported values.

Response

Stripe Checkout URL to complete payment

data
object