WazirX Wallet API

Authenticated endpoints for coin and withdrawal/deposit management

Operations 3

GET /sapi/v1/coins Coin information #
GET /sapi/v1/crypto/withdraws Withdrawal history #
GET /sapi/v1/crypto/deposits/address Deposit address #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/wazirx-wallet-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

wazirx-wallet-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WazirX REST Account Wallet API
  description: 'WazirX is an Indian cryptocurrency exchange providing REST and WebSocket APIs for spot trading on INR and crypto markets. The API supports order management, market data retrieval, account management, wallet operations, and sub-account management. Authentication uses HMAC SHA256 signatures for signed endpoints.

    '
  version: 1.0.0
  contact:
    name: WazirX API Support
    email: api@wazirx.com
    url: https://docs.wazirx.com/
  termsOfService: https://wazirx.com/terms
servers:
- url: https://api.wazirx.com
  description: Production server
security: []
tags:
- name: Wallet
  description: Authenticated endpoints for coin and withdrawal/deposit management
paths:
  /sapi/v1/coins:
    get:
      summary: Coin information
      description: Get information of coins (available for deposit and withdraw) for user. Requires USER_DATA permission.
      operationId: getCoins
      tags:
      - Wallet
      security:
      - ApiKeyAuth: []
        HmacSignature: []
      parameters:
      - $ref: '#/components/parameters/recvWindow'
      - $ref: '#/components/parameters/timestamp'
      - $ref: '#/components/parameters/signature'
      responses:
        '200':
          description: Array of coin information
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CoinInfo'
  /sapi/v1/crypto/withdraws:
    get:
      summary: Withdrawal history
      description: Fetch withdrawal history. Requires USER_DATA permission.
      operationId: getWithdrawals
      tags:
      - Wallet
      security:
      - ApiKeyAuth: []
        HmacSignature: []
      parameters:
      - name: coin
        in: query
        required: false
        schema:
          type: string
        description: Coin symbol filter
      - name: transferType
        in: query
        required: false
        schema:
          type: integer
          enum:
          - 1
          - 2
        description: 'Transfer type: 1=on-chain, 2=Binance transfer'
      - name: withdrawOrderId
        in: query
        required: false
        schema:
          type: string
      - name: status
        in: query
        required: false
        schema:
          type: integer
        description: 0=Email Sent, 1=Cancelled, 2=Awaiting Approval, 3=Rejected, 4=Processing, 5=Failure, 6=Completed
      - name: offset
        in: query
        required: false
        schema:
          type: integer
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 100
          maximum: 1000
      - $ref: '#/components/parameters/startTime'
      - $ref: '#/components/parameters/endTime'
      - $ref: '#/components/parameters/recvWindow'
      - $ref: '#/components/parameters/timestamp'
      - $ref: '#/components/parameters/signature'
      responses:
        '200':
          description: Array of withdrawals
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Withdrawal'
  /sapi/v1/crypto/deposits/address:
    get:
      summary: Deposit address
      description: Fetch deposit address with network. Requires USER_DATA permission.
      operationId: getDepositAddress
      tags:
      - Wallet
      security:
      - ApiKeyAuth: []
        HmacSignature: []
      parameters:
      - name: coin
        in: query
        required: true
        schema:
          type: string
        description: Coin symbol
        example: btc
      - name: network
        in: query
        required: true
        schema:
          type: string
        description: Network name
        example: BTC
      - $ref: '#/components/parameters/recvWindow'
      - $ref: '#/components/parameters/timestamp'
      - $ref: '#/components/parameters/signature'
      responses:
        '200':
          description: Deposit address information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DepositAddress'
components:
  parameters:
    signature:
      name: signature
      in: query
      required: true
      schema:
        type: string
      description: HMAC SHA256 signature of request parameters
    endTime:
      name: endTime
      in: query
      required: false
      schema:
        type: integer
        format: int64
      description: End time in milliseconds
    recvWindow:
      name: recvWindow
      in: query
      required: false
      schema:
        type: integer
        format: int64
        maximum: 60000
        default: 5000
      description: Request validity window in milliseconds (max 60000)
    timestamp:
      name: timestamp
      in: query
      required: true
      schema:
        type: integer
        format: int64
      description: Current timestamp in milliseconds
    startTime:
      name: startTime
      in: query
      required: false
      schema:
        type: integer
        format: int64
      description: Start time in milliseconds
  schemas:
    Withdrawal:
      type: object
      properties:
        binanceTransfer:
          type: boolean
        address:
          type: string
          example: 1A1zP1eP5QGefi2DMPTfTL5SLmv7Divf
        amount:
          type: string
          example: '0.001'
        createdAt:
          type: integer
          format: int64
          example: 1641463132
        lastUpdated:
          type: integer
          format: int64
          example: 1641463132
        coin:
          type: string
          example: btc
        id:
          type: string
          example: abc123
        network:
          type: string
          example: BTC
        status:
          type: integer
          description: 0=Email Sent, 1=Cancelled, 2=Awaiting Approval, 3=Rejected, 4=Processing, 5=Failure, 6=Completed
          example: 6
        transactionFee:
          type: string
          example: '0.0005'
        txId:
          type: string
          example: abc123txhash
    DepositAddress:
      type: object
      properties:
        address:
          type: string
          example: 1A1zP1eP5QGefi2DMPTfTL5SLmv7Divf
        coin:
          type: string
          example: btc
        tag:
          type:
          - string
          - 'null'
          example: null
        url:
          type: string
          example: https://blockchain.info/address/1A1zP1eP5QGefi2DMPTfTL5SLmv7Divf
    Network:
      type: object
      properties:
        coin:
          type: string
          example: btc
        depositEnable:
          type: boolean
        network:
          type: string
          example: BTC
        withdrawEnable:
          type: boolean
        withdrawFee:
          type: string
          example: '0.0005'
        withdrawMin:
          type: string
          example: '0.001'
    CoinInfo:
      type: object
      properties:
        coin:
          type: string
          example: btc
        rapidListed:
          type: boolean
        name:
          type: string
          example: Bitcoin
        binanceTransferEnable:
          type: boolean
        networkList:
          type: array
          items:
            $ref: '#/components/schemas/Network'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key required for MARKET_DATA and SIGNED endpoints
    HmacSignature:
      type: apiKey
      in: query
      name: signature
      description: HMAC SHA256 signature of the request parameters using the secret key