Skip to main content
GET
/
api
/
recovery
/
status
/
{transactionId}
Get Recovery Status
curl --request GET \
  --url https://api.revtain.com/api/recovery/status/{transactionId} \
  --header 'X-API-KEY: <api-key>'
{
  "transactionId": "01KKZ14FEZK152ZBXEM2XK1B0C",
  "status": "succeeded",
  "amount": 5000,
  "currency": "USD",
  "recoveredAt": "2026-03-17T23:15:21.000Z",
  "strategyUsed": "primary"
}

Documentation Index

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

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

Authorizations

X-API-KEY
string
header
required

Your Revtain API key (format: rev_xxx). Provided during onboarding.

Path Parameters

transactionId
string
required

The transaction ID returned from /api/recovery/execute.

Response

Recovery status

transactionId
string
Example:

"01KKZ14FEZK152ZBXEM2XK1B0C"

status
enum<string>
Available options:
succeeded,
failed,
blocked,
unknown
Example:

"succeeded"

amount
integer
Example:

5000

currency
string
Example:

"USD"

recoveredAt
string<date-time>
Example:

"2026-03-17T23:15:21.000Z"

strategyUsed
string
Example:

"primary"