Skip to main content
POST
/
checkout
/
fill
Fill card fields using a fill token
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>"
}

Authorizations

Authorization
string
header
required

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

Headers

Idempotency-Key
string

Unique key for idempotent request handling

Body

application/json
token
string
required

Fill token from POST /checkout/token

cdpBaseUrl
string
required

CDP HTTP base URL (e.g. http://localhost:9333)

Response

Fill result (filled or partial)

status
enum<string>
Available options:
filled,
partial
provider
string
fieldsFound
string[]
fieldsMissed
string[]
timingMs
number
error
string | null