Skip to main content
GET
/
v1
/
transactions
/
{transactionId}
Get a transaction
curl --request GET \
  --url https://api.ledger.so/v1/transactions/{transactionId} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "id": "<string>",
    "customerId": "<string>",
    "type": "<string>",
    "status": "<string>",
    "amount": "<string>",
    "sourceCurrency": "<string>",
    "destinationCurrency": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "destinationAddress": "<string>",
    "payoutAccountId": "<string>",
    "finalAmount": "<string>",
    "destinationTxHash": "<string>",
    "gasFee": "<string>",
    "exchangeFee": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ledger.so/llms.txt

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

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ld_live_...

Path Parameters

transactionId
string
required

The transaction ID

Response

Transaction details

ok
enum<boolean>
required
Available options:
true
data
object
required

Response fields vary by transfer type. Crypto transfers include destinationAddress, destinationTxHash, and gasFee. Fiat transfers include payoutAccountId instead.