vrtx Docs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIsCard Simulator
SDK APIs
  • Coming Soon!
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIsCard Simulator
SDK APIs
  • Coming Soon!
  1. Transactions
  • Welcome ๐Ÿ‘‹
  • Get Started
  • Authentication
  • Responses
  • Pagination
  • Auth
    • Token
      POST
  • Businesses
    • List businesses
      GET
    • Create business
      POST
  • Money Movement
    • Create fund
      POST
    • Create payout
      POST
    • Get payout
      GET
    • Create refund
      POST
    • Create transfer
      POST
    • Create withdrawal
      POST
  • Labels
    • List labels
      GET
    • Create label
      POST
  • Transactions
    • List transactions
      GET
    • Get transaction
      GET
    • List wallet transactions
      GET
  • Wallets
    • List wallets
      GET
    • Create wallet
      POST
    • Lookup wallet
      GET
    • Update wallet
      PATCH
    • Get wallet
      GET
    • Get wallet balance
      GET
    • Remove label
      DELETE
    • Assign label
      PUT
  • Wallet Statements
    • Retrieve wallet statement (preview)
  • Webhooks
    • Register webhook endpoint (preview)
    • List webhook endpoints (preview)
  1. Transactions

Get transaction

GET
https://api.staging.vrtx.sa/cl/v1/transactions/{transaction_id}
Last modified:2025-12-03 07:59:44
Retrieve a single transaction and its ledger attributes by ID.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.staging.vrtx.sa/cl/v1/transactions/630a552d-97e3-4ae0-8dc9-c373ee1fd86a' \
--header 'Authorization: Bearer <token>'

Responses

๐ŸŸข200OK
application/json
Transaction returned
Body

Example
{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "business_id": "f59fcbb7-848d-4242-af07-a8bb7e3ab37c",
    "external_reference": "string",
    "description": "string",
    "status": "string",
    "type": "string",
    "amount": "string",
    "amount_minor": 0,
    "currency": "str",
    "posted_at": "2022-03-10T16:15:50.000Z",
    "created_at": "2022-03-10T16:15:50.000Z",
    "effective_date": "2022-03-10T00:00:00.000Z",
    "debit_wallet_id": "52928010-6e7f-4701-a318-462f1ae39ce7",
    "debit_account_number": "string",
    "credit_wallet_id": "19d2899f-6331-4bd5-a0a9-4b94b18b61db",
    "credit_account_number": "string"
}
๐ŸŸ 401Unauthorized
๐ŸŸ 403Forbidden
๐ŸŸ 404Not Found
Modified atย 2025-12-03 07:59:44
Previous
List transactions
Next
List wallet transactions
Built with