Multigate
  1. 🔃 Conversions
Multigate
  • 🚀 Getting Started
  • 🔓 Authentication
    • Get Token
    • Refresh Token
    • Logout User
  • 👋 Onboarding
    • Create Subclient
    • Get All Subclients
    • Get Subclient
    • Update Subclient
    • Create Subclient Shareholder
    • Get Subclient Shareholders
    • Update Subclient Shareholder
    • Upload Subclient Documents
    • Get Subclient Documents
    • Delete Subclient
    • Submit Subclient
  • 💰 Accounts
    • 📄 Statements
      • Get Statement
    • Create Virtual Account
    • Get Account
    • Get Accounts By
    • Get All Accounts
    • Simulate Inflow (UAT only)
  • 🔃 Conversions
    • Get Quote
      GET
    • Lock Rate
      POST
    • Get Trade
      GET
    • Get All Trades
      GET
  • 💸 Payments
    • 🏦 Banks
      • Get Bank Details
    • 👤 Beneficiaries
      • Create Beneficiary
      • Get All Beneficiaries
      • Get Beneficiary
      • Update Beneficiary
      • Validate Beneficiary Account (NGN only)
    • Create Single Transfer
    • Get Purpose Codes
    • Get Transfer Fields & Fees
    • Find Transfers
  • 📩 Webhooks / Push Notifications
    • Add a New Client Configuration
    • Update Client Configuration Current Mode
    • Get Client Configuration
  1. 🔃 Conversions

Get Trade

GET
/trade-service/api/v1/fx-rates/{id}
Retrieve a previously locked rate. Passing a rate that hasn't been locked will result in a 404 not found error.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
string 
required
Example:
fxr_lck_gg07CgHLWk5280

Request 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-gateway-uat.mmacs.io/platform/trade-service/api/v1/fx-rates/fxr_lck_gg07CgHLWk5280'

Responses

🟢200OK
application/json
Body
message
string 
required
code
string 
required
sourceAmount
string 
required
sourceCurrency
string 
required
rate
string 
required
targetCurrency
string 
required
targetAmount
string 
required
tradeReference
string 
required
status
enum<string> 
required
Allowed values:
processingcompleted
createdAt
string 
required
updatedAt
string 
required
Example
{
  "message": "The FX rate has been successfully fetched.",
  "code": "fxr_lck_gg07CgHLWk5280",
  "sourceAmount": "100",
  "sourceCurrency": "NGN",
  "rate": "0.0006102484350000001",
  "targetCurrency": "USD",
  "targetAmount": "163867.68775572523",
  "tradeAmount": "100",
  "tradeReference": "DnIrBZyanfHjll",
  "status": "processing",
  "createdAt": "2024-12-20T13:42:37.966Z",
  "updatedAt": "2024-12-20T13:42:38.401Z"
}
🟠404Record not found
Previous
Lock Rate
Next
Get All Trades
Built with