PHPackages                             techtailor/laravel-wazirx-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. techtailor/laravel-wazirx-api

ActiveLibrary[API Development](/categories/api)

techtailor/laravel-wazirx-api
=============================

A Laravel Wrapper for the WazirX API.

0.1.2(4y ago)130MITPHPPHP ^7.4|^8.0

Since Nov 27Pushed 3y ago1 watchersCompare

[ Source](https://github.com/TechTailor/Laravel-Wazirx-Api)[ Packagist](https://packagist.org/packages/techtailor/laravel-wazirx-api)[ Docs](https://github.com/TechTailor/Laravel-Wazirx-Api)[ RSS](/packages/techtailor-laravel-wazirx-api/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (6)Versions (5)Used By (0)

[![](https://camo.githubusercontent.com/e235d50ee393919d7a2fa945ca77b651bb960bef720bc703469095a7307f4d97/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c2d57617a6972782d4150492e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d746563687461696c6f722532466c61726176656c2d77617a6972782d617069267061747465726e3d617263686974656374267374796c653d7374796c655f32266465736372697074696f6e3d412b6c61726176656c2b777261707065722b666f722b7468652b57617a6972582b4150492e266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d736572766572)](https://camo.githubusercontent.com/e235d50ee393919d7a2fa945ca77b651bb960bef720bc703469095a7307f4d97/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c2d57617a6972782d4150492e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d746563687461696c6f722532466c61726176656c2d77617a6972782d617069267061747465726e3d617263686974656374267374796c653d7374796c655f32266465736372697074696f6e3d412b6c61726176656c2b777261707065722b666f722b7468652b57617a6972582b4150492e266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d736572766572)

[![GitHub release](https://camo.githubusercontent.com/20567bd9c5e920968d633fcfc4f0eaf35fe6d49d81614bf7d0f954a661d63515/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f746563687461696c6f722f6c61726176656c2d77617a6972782d6170692e7376673f696e636c7564655f70726572656c6561736573267374796c653d666f722d7468652d62616467652626636f6c6f72423d374535374332)](https://packagist.org/packages/techtailor/laravel-wazirx-api)[![GitHub issues](https://camo.githubusercontent.com/0c44913f4453c7910e33327aef71904ee1c134e75d6017ee3e2b6bf3aa06dbb1/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f546563685461696c6f722f4c61726176656c2d57617a6972782d4170692e7376673f7374796c653d666f722d7468652d6261646765)](https://github.com/TechTailor/Laravel-Wazirx-Api/issues)[![Software License](https://camo.githubusercontent.com/c003d4d48be8c870b7f5dfef6e898cc00ece72e12064c1eb199611b0e290ce92/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666f722d7468652d62616467652626636f6c6f72423d463237453430)](license.md)[![Total Downloads](https://camo.githubusercontent.com/30adb31e3a6e3b2690351a1e6b02fea23fe8e57c7fd1dd00765f9183f779ec45/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746563687461696c6f722f6c61726176656c2d77617a6972782d6170692e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/techtailor/laravel-wazirx-api)

This package provides a Laravel Wrapper for the [WazirX API](https://docs.wazirx.com/) and allows you to easily communicate with it.

---

#### Important Note

[](#important-note)

This package is in early development stage. It is not advisable to use it in a production app until **`v1.0`** is released. Feel free to open a PR to contribute to this project and help me reach a production ready build.

---

### Installation

[](#installation)

You can install the package via composer:

```
composer require techtailor/laravel-wazirx-api
```

You can publish the config file with:

```
php artisan vendor:publish --tag="wazirx-api-config"
```

Open your `.env` file and add the following (replace `YOUR_API_KEY` and `YOUR_SECRET` with the API Key &amp; Secret you received from [Wazirx](https://wazirx.com/settings/keys)) -

```
WAZIRX_KEY=YOUR_API_KEY
WAZIRX_SECRET=YOUR_SECRET
```

Or

Open the published config file available at `config/wazirx-api.php` and add your API and Secret Keys:

```
return [
    'auth' => [
        'key'        => env('WAZIRX_KEY', 'YOUR_API_KEY'),
        'secret'     => env('WAZIRX_SECRET', 'YOUR_SECRET')
    ],
];
```

### Usage

[](#usage)

Using this package is very simple. Just initialize the Api and call one of the available methods:

```
use TechTailor\Wazirx\WazirxAPI;

$wazirx = new WazirxApi();

$time = $wazirx->getTime();
```

You can also set an API &amp; Secret for a user by passing it after initalization (useful when you need to isolate api keys for individual users):

```
$wazirx = new WazirxApi();

$wazirx->setApi($apiKey, $secretKey);

$accountInfo = $wazirx->getAccountInfo();
```

### Available Methods

[](#available-methods)

Available Public Methods (Security Type : `NONE`) **\[API Keys Not Required\]**

```
- getTime()
- getServerStatus()
- getExchangeInfo()
- getTickers()
- getTicker($symbol)

```

Available Private Methods (Security Type : `USER_DATA`) **\[API Keys Required\]**

```
- getAccountInfo()
- getFunds()
- getAllOrders($symbol)
- getOpenOrders()
- getOrderStatus($orderId)

```

### TODO

[](#todo)

List of features or additional functionality we are working on (in no particular order) -

```
- Improve exception handling.
- Add rate limiting to API Calls.
- Add response for API ban/blacklisting response.
- Improve ReadMe.
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

### Contributing

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

### Security Vulnerabilities

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

### Credits

[](#credits)

- [Moinuddin S. Khaja](https://github.com/TechTailor)
- [All Contributors](../../contributors)

### License

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

1680d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/14147474?v=4)[Moinuddin S. Khaja](/maintainers/TechTailor)[@TechTailor](https://github.com/TechTailor)

---

Top Contributors

[![TechTailor](https://avatars.githubusercontent.com/u/14147474?v=4)](https://github.com/TechTailor "TechTailor (2 commits)")

---

Tags

laravel-wazirxwazirxwazirx-apiwazirx-api-laravelwazirxapiwazirxwazirx-apilaravel-wazirxlaravel-wazirx-api

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/techtailor-laravel-wazirx-api/health.svg)

```
[![Health](https://phpackages.com/badges/techtailor-laravel-wazirx-api/health.svg)](https://phpackages.com/packages/techtailor-laravel-wazirx-api)
```

###  Alternatives

[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.9k3](/packages/defstudio-telegraph)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M346](/packages/psalm-plugin-laravel)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.0k](/packages/simplestats-io-laravel-client)[illuminate/auth

The Illuminate Auth package.

10528.2M1.2k](/packages/illuminate-auth)[api-platform/laravel

API Platform support for Laravel

58171.6k14](/packages/api-platform-laravel)[spatie/laravel-export

Create a static site bundle from a Laravel app

674146.0k6](/packages/spatie-laravel-export)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
