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>"
}Redeems a fill token and returns card credentials for in-page form filling.
Used by @ovra/pay SDK — the SDK fills the form inside page.evaluate() so
credentials never enter the agent’s JavaScript scope.
Domain must match the merchant domain the token was scoped to.
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>"
}API key (sk_...) or Agent token (at_...)