Aligned the WazirX Postman collection with the live API spec
View on GitHubWazirX’s official Postman collection is what third-party tooling (SDK generators, connector wrappers, including my own) treats as ground truth, so drift between the collection and the live API has consequences beyond the collection itself. I audited every request in both collection files against the current published spec at docs.wazirx.com and fixed what didn’t match:
- Withdraw was pointing at the wrong endpoint with params in the wrong
place (
POST /sapi/v1/crypto/withdrawsas query params, instead ofPOST /sapi/v1/crypto/withdrawwith a signed, url-encoded body). - Create Auth Token was signing a url-encoded body instead of the query string.
- A Funds query param was typo’d as
recvWindow1. - New Order used
stop_priceinstead of the documentedstopPrice.
I also added four documented endpoints that were missing from the collection entirely (address book, funds v2, wallet transfer, and wallet transfer history), following the signing conventions of the closest existing request. Open as #7 .