Skip to main content
POST
/
checkout
/
proxy
Proxy HTTP request with card placeholders
curl --request POST \
  --url https://api.getovra.com/checkout/proxy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "request": {
    "url": "<string>",
    "method": "POST",
    "headers": {},
    "body": "<unknown>"
  }
}
'
{
  "status": "completed",
  "httpStatus": 123,
  "body": "<unknown>",
  "timingMs": 123,
  "placeholdersReplaced": [
    "<string>"
  ],
  "error": "<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 must match request URL host)

request
object
required

Response

Proxy execution result (check status for completed vs failed)

status
enum<string>
Available options:
completed,
failed
httpStatus
integer
body
any | null

Response body — JSON value when Content-Type is JSON, otherwise text; may be null on errors

timingMs
number
placeholdersReplaced
string[]
error
string | null