Skip to main content
GET
/
transactions
/
{txId}
Get transaction by ID
curl --request GET \
  --url https://api.orafi.app/v1/transactions/{txId} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Transaction retrieved successfully",
  "data": {
    "id": "tx_abc123",
    "amount": 100,
    "currency": "USDC",
    "status": "CONFIRMED",
    "type": "PAYMENT",
    "fromAddress": "<string>",
    "toAddress": "<string>",
    "txDigest": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.orafi.app/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for merchant authentication required for most endpoints

Path Parameters

txId
string
required

Transaction ID

Response

Transaction details retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Transaction retrieved successfully"

data
object