curl --request POST \
--url https://api.getovra.com/checkout/fill \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"cdpBaseUrl": "<string>"
}
'{
"status": "filled",
"provider": "<string>",
"fieldsFound": [
"<string>"
],
"fieldsMissed": [
"<string>"
],
"timingMs": 123,
"error": "<string>"
}Fill payment card fields using a fill token. Zero-knowledge — card data never exposed to caller.
curl --request POST \
--url https://api.getovra.com/checkout/fill \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>",
"cdpBaseUrl": "<string>"
}
'{
"status": "filled",
"provider": "<string>",
"fieldsFound": [
"<string>"
],
"fieldsMissed": [
"<string>"
],
"timingMs": 123,
"error": "<string>"
}API key (sk_...) or Agent token (at_...)
Unique key for idempotent request handling
Fill token from POST /checkout/token
CDP HTTP base URL (e.g. http://localhost:9333)