# Replace YOUR_JWT_TOKEN with your actual JWT token
curl -X GET "https://staging.bitcoinflash.xyz/api/v1/transactions/a05f6d71-f31b-45b0-9de1-f25e964ed9cd" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"success": true,
"transaction": {
"id": "a05f6d71-f31b-45b0-9de1-f25e964ed9cd",
"reference": "TXN_691a15c0633f467ED6293B2",
"type": "BUY_BITCOIN",
"amount_xof": "10000 XOF",
"amount_satoshi": "1503858 SATS",
"exchange_rate": 53456251,
"status": "COMPLETED",
"payement_reference": "PAY_12345abcde",
"payment_url": "https://pay.fedapay.com/invoice/pay_12345abcde",
"progress": {
"payment_status": "COMPLETED",
"payout_status": "COMPLETED"
},
"payout_reference": "PAYOUT_987654xyz",
"receiver_address": "user@lightning.wallet",
"completed_at": "2025-11-16T18:25:30.000000Z",
"created_at": "2025-11-16T18:19:45.000000Z"
}
}
Transactions
Get Transaction
Retrieve details of a specific transaction by its UUID.
GET
/
api
/
v1
/
transactions
/
{id}
# Replace YOUR_JWT_TOKEN with your actual JWT token
curl -X GET "https://staging.bitcoinflash.xyz/api/v1/transactions/a05f6d71-f31b-45b0-9de1-f25e964ed9cd" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"success": true,
"transaction": {
"id": "a05f6d71-f31b-45b0-9de1-f25e964ed9cd",
"reference": "TXN_691a15c0633f467ED6293B2",
"type": "BUY_BITCOIN",
"amount_xof": "10000 XOF",
"amount_satoshi": "1503858 SATS",
"exchange_rate": 53456251,
"status": "COMPLETED",
"payement_reference": "PAY_12345abcde",
"payment_url": "https://pay.fedapay.com/invoice/pay_12345abcde",
"progress": {
"payment_status": "COMPLETED",
"payout_status": "COMPLETED"
},
"payout_reference": "PAYOUT_987654xyz",
"receiver_address": "user@lightning.wallet",
"completed_at": "2025-11-16T18:25:30.000000Z",
"created_at": "2025-11-16T18:19:45.000000Z"
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.bitcoinflash.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
UUID of the transaction. Example:
a05f6d71-f31b-45b0-9de1-f25e964ed9cdResponse
true on success.Full transaction details including real-time progress.
Show Transaction properties
Show Transaction properties
UUID
Transaction reference
BUY_BITCOIN or SELL_BITCOINXOF amount
Satoshi amount
BTC/XOF rate
PENDING, PROCESSING, COMPLETED, or FAILEDURL to complete payment
Payment gateway status
Bitcoin payout status
Target BTC/Lightning address
Completion timestamp
# Replace YOUR_JWT_TOKEN with your actual JWT token
curl -X GET "https://staging.bitcoinflash.xyz/api/v1/transactions/a05f6d71-f31b-45b0-9de1-f25e964ed9cd" \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
{
"success": true,
"transaction": {
"id": "a05f6d71-f31b-45b0-9de1-f25e964ed9cd",
"reference": "TXN_691a15c0633f467ED6293B2",
"type": "BUY_BITCOIN",
"amount_xof": "10000 XOF",
"amount_satoshi": "1503858 SATS",
"exchange_rate": 53456251,
"status": "COMPLETED",
"payement_reference": "PAY_12345abcde",
"payment_url": "https://pay.fedapay.com/invoice/pay_12345abcde",
"progress": {
"payment_status": "COMPLETED",
"payout_status": "COMPLETED"
},
"payout_reference": "PAYOUT_987654xyz",
"receiver_address": "user@lightning.wallet",
"completed_at": "2025-11-16T18:25:30.000000Z",
"created_at": "2025-11-16T18:19:45.000000Z"
}
}
⌘I