Skip to main content
POST
/
v1
/
cua
/
autofill-tokens
Mint a single-use autofill token
curl --request POST \
  --url https://api.getovra.com/v1/cua/autofill-tokens \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "intentId": "<string>",
  "cardId": "<string>",
  "merchantOrigin": "https://shop.example.com",
  "amountCentsMax": 5000000
}
'
{
  "aft_id": "aft_a1b2c3d4e5f6",
  "expires_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.getovra.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key (sk_sandbox_* / sk_test_* / sk_live_*) or Agent token (at_* / at_dlg_*)

Body

application/json
intentId
string
required
Pattern: ^int_[a-z0-9]{8,}$
cardId
string
required
Pattern: ^ca_[a-z0-9]{8,}$
merchantOrigin
string<uri>
required
Example:

"https://shop.example.com"

amountCentsMax
integer
required
Required range: 1 <= x <= 10000000

Response

Autofill token minted

aft_id
string
Example:

"aft_a1b2c3d4e5f6"

expires_at
string<date-time>