{"id":19831208,"url":"https://github.com/codigami/wazirx-api","last_synced_at":"2025-11-24T09:04:35.019Z","repository":{"id":138795809,"uuid":"148277918","full_name":"Codigami/wazirx-api","owner":"Codigami","description":"public api of Wazirx","archived":false,"fork":false,"pushed_at":"2018-09-12T06:08:12.000Z","size":3,"stargazers_count":3,"open_issues_count":1,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-01-11T10:16:04.219Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Codigami.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-09-11T07:26:59.000Z","updated_at":"2023-02-16T04:50:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"d97a3ba9-8106-4bd8-abc0-c8a543086987","html_url":"https://github.com/Codigami/wazirx-api","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codigami%2Fwazirx-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codigami%2Fwazirx-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codigami%2Fwazirx-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Codigami%2Fwazirx-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Codigami","download_url":"https://codeload.github.com/Codigami/wazirx-api/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241191399,"owners_count":19925241,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T11:29:09.636Z","updated_at":"2025-11-24T09:04:34.938Z","avatar_url":"https://github.com/Codigami.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# WazirX Public Rest API\nHere's our public API handed to you on a silver platter. You can use it to build tickers, price comparison apps, or anything that helps the crypto community. Use it wisely and responsibily. ❤️\n\n## General Information\n1. Base API Endpoint: https://api.wazirx.com\n1. All public api will return either JSON or Array object.\n\n### Public API Endpoints\n\n1. GET `/api/v2/market-status`\n\n    Returns JSON object which has current market and assets status. Response object will have 2 keys `markets`(all market related configs will be in this key) and `assets`(all assets related configs will be here). \n    ##### Response:    \n    ```\n    {\n        \"markets\": [\n            {\n                \"baseMarket\": \"btc\",\n                \"quoteMarket\": \"inr\",\n                \"minBuyAmount\": 0.001,\n                \"minSellAmount\": 0.001,\n                \"fee\": {\n                    \"bid\": {\n                        \"maker\": 0.001,\n                        \"taker\": 0.0025\n                    },\n                    \"ask\": {\n                        \"maker\": 0.001,\n                        \"taker\": 0.0025\n                    }\n                },\n                \"basePrecision\": 4,\n                \"quotePrecision\": 2,\n                \"low\": \"460001.01\",\n                \"high\": \"505000.0\",\n                \"last\": \"480102.0\",\n                \"open\": 505002,\n                \"volume\": \"0.2071\",\n                \"sell\": \"490000.0\",\n                \"buy\": \"485001.0\"\n            },\n            ...\n        ],\n        \"assets\": [\n            {\n                \"type\": \"inr\",\n                \"name\": \"Rupee\",\n                \"withdrawFee\": 0,\n                \"minWithdrawAmount\": 50,\n                \"maxWithdrawAmount\": 50000,\n                \"deposit\": \"enabled\",\n                \"withdrawal\": \"enabled\"\n            },\n            ...\n        ]\n    }\n    ```\n    \n    `markets` key have multiple market related configuration and description of every field in market is as below:\n        \n    1. `baseMarket`: ticker code of base asset\n    1. `quoteMarket`: ticker code of quote asset\n    1. `minBuyAmount`: Minimum buy amount of base asset\n    1. `minSellAmount`: Minumum sell amount of base asset\n    1. `fee`: JSON Object consists of `bid` and `ask` order's maker-taker fee percentage\n    1. `basePrecision`: Maximum precision of base asset, this the decimal point. \n    1. `quotePrecision`: Maximum  precision of quote asset\n    1. `low`: 24 hrs lowest price of base asset\n    1. `high`: 24 hrs highest price of base asset\n    1. `last`: Last traded price in current market\n    1. `open`: Market Open price 24hrs ago\n    1. `volume`: Last 24hrs traded volume\n    1. `sell`: Top ask order price\n    1. `buy`: Top bid order price\n    \n    `assets` key have multiple asset related configuration as described below:\n        \n    1. `type`: asset code\n    1. `name`: Display name of asset\n    1. `withdrawFee`: Withdrawal fee of asset\n    1. `minWithdrawAmount`: Minimum withdrawal amount in single transaction\n    1. `maxWithdrawAmount`: Maximum withdrawal amount in single transaction\n    1. `deposit`: Denotes whether deposit is enabled or disabled\n    1. `withdrawal`: Denotes whether withdrawal is enabled or disabled\n\n1. GET `/api/v2/tickers`\n    \n    Returns JSON response which has active market data with all ticker related values.\n    ##### Response:\n    ```\n    {\n        \"btcinr\": {\n            \"base_unit\": \"btc\",\n            \"quote_unit\": \"inr\",\n            \"low\": \"472005.0\",\n            \"high\": \"508102.0\",\n            \"last\": \"508100.0\",\n            \"open\": 490000,\n            \"volume\": \"0.2709\",\n            \"sell\": \"508100.0\",\n            \"buy\": \"481000.0\",\n            \"name\": \"BTC/INR\",\n            \"at\": 1536732262\n        },\n        ...\n    }\n    ```\n    Response have multiple key which denotes market and it has JSON object as a value which is consists of ticker information as mentioned below:\n    \n    1. `base_unit`: ticker code of base market\n    1. `quote_unit`: ticker code of quote asset\n    1. `low`: 24 hrs lowest price of base asset\n    1. `high`: 24 hrs highest price of base asset\n    1. `last`: Last traded price in current market\n    1. `open`: Market Open price 24hrs ago\n    1. `volume`: Last 24hrs traded volume\n    1. `sell`: Top ask order price\n    1. `buy`: Top bid order price\n    1. `name`: Display text of market\n    1. `at`: Timestamp when ticker information is fetched\n    \nIf you have any questions regarding APIs please reach out to us at http://support.wazirx.com","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodigami%2Fwazirx-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodigami%2Fwazirx-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodigami%2Fwazirx-api/lists"}