BPN
  1. FX
BPN
  • Getting Started
    • Introduction to BPN
    • Key Concepts & Terminology
    • Architecture Overview
  • Onboarding & Prerequisites
    • Product Demo
    • Sandbox & Test Environment
  • Use Case
    • Transfer
    • Vault
    • On/Off Ramp
    • Compliance (Travel Rule Information Submission)
  • API Reference
    • KYB
      • Share KYB Info For Sub User
      • Get KYB Sub User Status
    • Account Management
      • add bank account
      • list bank account
      • create virtaul account
      • list virtual account
      • Master VA balance inquiry
      • list virtual account orders
      • refund virtual account order
    • Wallet
      • Get Asset Balance
      • Get Deposit Address
      • Add Deposit Sender
      • Add Withdraw Whitelist
      • Delete Withdraw Whiltelist
      • Request Withdraw
      • Query Transaction History
    • FX
      • fx inquery
        GET
    • BPN Transactions
      • get stablecoin quote
      • create stable order
      • get order (single) detail
      • list orders(batch)
    • Reconciliation
  • Webhooks & Event
    • resend fail webhook
      POST
    • KYB Status Notification
      POST
    • Transaction Status Notification
      POST
    • Account Status Notification
      POST
    • Open Virtual Account Status
      POST
    • Deposit Sender Detail Required
      POST
    • virtual account payment status
      POST
  • Appendix
    • Enum
    • Virtual Account(VA) Support List
  • Release Notes & Changelog
    • Version History
  • Schemas
    • Schemas
      • walletBalance
      • walletAddress
      • transactionRecord
  1. FX

fx inquery

GET
/v1/fx/fx-inquery
Purpose:
To retrieve real-time price exchange rate for a currency pair.
What this endpoint does:
Returns exchange rate for the given source and target currencies.
Keynotes:
Supports fiat-to-crypto and crypto-to-fiat pairs.
This endpoint is purely for exchange rate inquiry. To create/execute a transaction, please use the get quotation endpoint to request for a real time quotation first.

Request

Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/fx/fx-inquery'
Response Response Example
{
    "status": 0,
    "msg": "string",
    "code": "string",
    "data": {
        "price": "string",
        "time": "2019-08-24T14:15:22Z"
    },
    "traceId": "string"
}
Modified at 2025-08-26 14:53:16
Previous
Query Transaction History
Next
get stablecoin quote
Built with