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

Was this helpful?

  1. Order History & Status

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/

Request Headers

Name
Type
Description

Authorization*

String

"Bearer ${partner_secret_key}"

x-partner-id*

String

"pxxxxxx"

Request Body

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"

Sample code

{
    "order_type":"buy",
    "date_from":"2024-10-01 16:000",
    "date_to":"2024-10-10 16:000"
}

Reponse Body

{
     success: true,
     message: string,
     data: {
     ...
          }
}
PreviousGet Single Order EndpointNextSell/Payout Verification Endpoint

Last updated 7 months ago

Was this helpful?