Skip to main content
POST
/
checkout
/
redeem
Redeem fill token for card credentials
curl --request POST \
  --url https://api.getovra.com/checkout/redeem \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "domain": "checkout.stripe.com"
}
'
{
  "pan": "<string>",
  "expiryMonth": 123,
  "expiryYear": 123,
  "cvc": "<string>",
  "holderName": "<string>",
  "intentId": "<string>"
}

Authorizations

Authorization
string
header
required

API key (sk_...) or Agent token (at_...)

Body

application/json
token
string
required

Fill token from POST /checkout/token

domain
string
required

Current page hostname (must match token's merchant domain)

Example:

"checkout.stripe.com"

Response

Card credentials for form filling

pan
string
expiryMonth
integer
expiryYear
integer
cvc
string
holderName
string
intentId
string