FOMO API (v20250702)
  1. Transaction
FOMO API (v20250702)
  • Authorization
  • Webhook
  • API
    • Account
      • Retrieve an account
      • List accounts
    • Balance
      • Retrieve a balance
      • List balances
    • Transaction
      • Retrieve a transaction
        GET
      • List transactions
        GET
    • Virtual Account
      • Retrieve a virtual account
      • List virtual accounts
    • Beneficiary
      • Beneficiary Acocunt
        • List beneficiary accounts
        • Retrieve a beneficiary account
      • List beneficiaries
      • Retrieve a beneficiary
    • Account Holder
      • Retrieve an account holder
      • List account holders
    • Outgoing Transfer
      • List outgoing transfers
      • Retrieve an outgoing transfer
    • Webhook
      • Retrieve a webhook
      • List webhooks
    • Intent
      • Account Holder Creation
        • Create an account holder creation intent
        • Get an account holder creation intent
        • Confirm an account holder creation intent
      • Outgoing Transfer Creation
        • Create an outgoing transfer creation intent
        • Get an outgoing transfer creation intent
        • Confirm an outgoing transfer creation intent
      • Virtual Account Creation
        • Create a virtual account creation intent
        • Set account holder for virtual account creation intent
        • Get a virtual account creation intent
        • Confirm a virtual account creation intent
      • Virtual Account Update
        • Create a virtual account update intent
        • Set account holder for virtual account update intent
        • Get a virtual account update intent
        • Confirm a virtual account update intent
      • Beneficiary Creation
        • Create a beneficiary creation intent
        • Get a beneficiary creation intent
        • Confirm a beneficiary creation intent
      • Beneficiary Account Creation
        • Create a beneficiary account creation intent
        • Get a beneficiary account creation intent
        • Confirm a beneficiary account creation intent
  1. Transaction

Retrieve a transaction

UAT Env
https://uat.fomoapis.com/v1
UAT Env
https://uat.fomoapis.com/v1
GET
https://uat.fomoapis.com/v1
/transactions/{transaction_id}

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://uat.fomoapis.com/v1/transactions/0194fea1-5d8f-72c5-a9e8-ef9d94823547' \
--header 'x-fomo-api-version;'
Response Response Example
{
    "id": "01953623-06ce-710e-bada-41675ea30e46",
    "create_time": "2025-02-24T04:07:00.075262+00:00",
    "update_time": "2025-02-24T04:33:14.260597+00:00",
    "token": "AZU2IwbOcQ662kFnXqMORg==",
    "etag": "AZU2IwbOcQ662kFnXqMORgAAAAAAAAAF",
    "debit_credit_indicator": "CR",
    "currency_code": "ETH",
    "amount": "0.01",
    "debit_amount": "0",
    "credit_amount": "0.01",
    "pending": false,
    "transaction_code": "EXT-W",
    "balance": "0.01",
    "post_time": "2025-02-24T04:07:00.075260+00:00",
    "value_time": "2025-02-24T04:33:14.221156+00:00",
    "account_id": "abc08684-799e-4961-b4d6-6b9289fd5103",
    "balance_id": "d48d7e77-a90b-4c8b-aee4-d259a2032ff1",
    "customer_id": "725040eb-ed2c-4926-967c-39c8769eb622",
    "foreign_currency_code": null,
    "foreign_amount": null,
    "remark": "confirm incoming deposit",
    "type": "transfer-off_us-inward-crypto",
    "detail": {
        "network": "ethereum/sepolia",
        "kind": null,
        "address_from": "0xd1bd27c9be2943e8ec0ce43d6f8b8f9ce434eeb7",
        "address_to": "0xd63f6c9b5cc6326f37b402d0c9d98ba6336647cb",
        "value": "0.01",
        "transaction_hash": "0x5cce3ed0f99e2f4309bfae5b2605ec7a2a629f5a697a5ee51b4a8f0ea513349e"
    },
    "external_account": {
        "type": "crypto-account",
        "detail": {
            "network": "ethereum/sepolia",
            "address": "0xd63f6c9b5cc6326f37b402d0c9d98ba6336647cb"
        }
    }
}
Previous
List balances
Next
List transactions
Built with