Skip to main content
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

id
string
required
UUID of the transaction. Example: a05f6d71-f31b-45b0-9de1-f25e964ed9cd

Response

success
boolean
true on success.
transaction
object
Full transaction details including real-time progress.
# 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"
  }
}