Axis- Instant Swap
About usContact Us
  • Welcome to Axis Instant Swap
  • Getting Started
    • Partner Onboarding Endpoints
    • Partner Activate Endpoint
    • Regenerate Partners Public & Private Keys
    • Digital Signature
  • Account Codes/Bank codes
  • Buy (Fiat On-Ramp)
    • Exchange Rate
    • Create Buy Order Endpoint
  • Sell (Crypto Off-Ramp)
    • Exchange Rate
    • Create Sell Order Endpoint
  • Events
  • Order History & Status
    • Pending Transactions
      • Transaction Pending KYC Endpoint
    • Get Single Order Endpoint
    • Get Multiple Order Endpoint
    • Sell/Payout Verification Endpoint
  • Post KYC Data
    • Post KYC Data Endpoint
  • Create KYC
  • Verify KYC Status
  • Release KYC Pending Transactions
  • Transaction Resolution
    • Log Issue
    • Check Issue Status
Powered by GitBook
On this page
  • Get Single Order Endpoint
  • This is used to get the details of a single order
  • Get Multiple Order Endpoint
  • This is used to get the details of multiple orders.

Was this helpful?

Order History & Status

This endpoint is used to get transactions within a date range and verify transaction status.

You can use this endpoint to make two types of query

  • Query a single transaction: To know more about a transaction status, you can use the "search_partner_order_ref" to query the transaction. If you are using this key, ignore the start and end date parameters

  • Query using date range: If you want to see all the history of activities on your wallet between a date range use the "start_date" & "end_date". While using this key, ignore the search_partner_order_ref

Get Single Order Endpoint

This is used to get the details of a single order

GET https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/GetOrder/

Query Parameters

Name
Type
Description

order_type*

String

"buy or sell"

order_no*

String

This is the order number of the transaction

Headers

Name
Type
Description

Authorization*

String

Bearer ${partner_secret_key}

x-partner-id*

String

"pxxxxxx"

{
     success: true,
     message: string,
     data: {
     .....
     }
     }

Get Multiple Order Endpoint

This is used to get the details of multiple orders.

GET https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/OrderHistory/

Query Parameters

Name
Type
Description

order_type*

String

"buy or sell"

date_from*

String

"2024-03-01 16:000"

date_to*

String

"2024-03-02 16:000"

Headers

Name
Type
Description

Authorization*

String

"Bearer ${partner_secret_key}"

x-partner-id*

String

"pxxxxxx"

{
     success: true,
     message: string,
     data: {
     .....
     }
     }

PreviousEventsNextPending Transactions

Last updated 12 months ago

Was this helpful?