PHPackages                             asad/laravel-zoho-api-wrapper - 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. asad/laravel-zoho-api-wrapper

ActiveLibrary[API Development](/categories/api)

asad/laravel-zoho-api-wrapper
=============================

This is ZOHO REST API-V2 wrapper

3.0.2(4y ago)465.9k—7.9%4[2 issues](https://github.com/asadku34/zoho-api-wrapper/issues)MITPHPPHP ~7.0|~8.0CI failing

Since Mar 14Pushed 4y ago1 watchersCompare

[ Source](https://github.com/asadku34/zoho-api-wrapper)[ Packagist](https://packagist.org/packages/asad/laravel-zoho-api-wrapper)[ Docs](https://github.com/asadku34/zoho-api-wrapper)[ RSS](/packages/asad-laravel-zoho-api-wrapper/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (1)Versions (29)Used By (0)

ZOHO CRM API V2 Wrapper for Laravel 5|6|7|8
===========================================

[](#zoho-crm-api-v2-wrapper-for-laravel-5678)

[![Laravel 5.x](https://camo.githubusercontent.com/5a1939c3fb1f6760124421638f59ab4ed15b6d03dbb30a6824df9af781880437/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d352e782d6f72616e67652e737667)](http://laravel.com)[![Latest Stable Version](https://camo.githubusercontent.com/1b7aa403c549a1e50bee9d70fea001fa3bd5924dd8ff0671a076b57496c5cf79/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f617361642f6c61726176656c2d7a6f686f2d6170692d777261707065722e737667)](https://packagist.org/packages/asad/laravel-zoho-api-wrapper)[![Latest Unstable Version](https://camo.githubusercontent.com/c937f7879033d9bda5b476aa29e5b38beb5f5c5f80c3f27d4b861a0be2f008df/68747470733a2f2f706f7365722e707567782e6f72672f617361642f6c61726176656c2d7a6f686f2d6170692d777261707065722f762f756e737461626c652e737667)](https://packagist.org/packages/asad/laravel-zoho-api-wrapper)[![Total Downloads](https://camo.githubusercontent.com/516d79c3d569a42789e1e62d1b6dfb972d436e9b5a1acad5635897537a1a21c2/68747470733a2f2f706f7365722e707567782e6f72672f617361642f6c61726176656c2d7a6f686f2d6170692d777261707065722f646f776e6c6f6164732e706e67)](https://packagist.org/packages/asad/laravel-zoho-api-wrapper)[![License](https://camo.githubusercontent.com/850eae1099d2b05f53383473d7cd51f9bc1ab09b7d0d9e5122f1dd930efdcc6d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6d6173686170652f6170697374617475732e737667)](https://packagist.org/packages/asad/laravel-zoho-api-wrapper)

To easing [ZOHO](https://www.zoho.com/crm/developer/docs/api/overview.html) REST API V2 call for Laravel application.

Requirements
------------

[](#requirements)

- [PHP &gt;= 7.0](http://php.net/)
- [Laravel 5|6|7|8](https://github.com/laravel/framework)

Installation
------------

[](#installation)

```
$ composer require asad/laravel-zoho-api-wrapper
```

#### Configuration

[](#configuration)

```
$ php artisan zoho:authentication

Input CRM client id:
> (your client id)
Input CRM client secret:
> (your client secret)
Input client domain (ex: example.com):
> (your client domain name)
Select your protocol.[http]:
[0] http
[1] https
> 0
Select your env. [sandbox]:
[0] sandbox
[1] live
> 0
Is it CN DC?
[0] No
[1] Yes
Scopes? (ex: ZohoCRM.modules.ALL,ZohoCRM.settings.ALL) If you skip it will enable ex: scopes
> (zoho scopes)

Copy the following url, paste on browser and hit return.
https://accounts.zoho.com/oauth/v2/auth?....
```

How to use (example)
--------------------

[](#how-to-use-example)

```
> ZohoController.php

use Asad\Zoho\Api\RecordApi;
use Asad\Zoho\Exception\ZohoException;

Class ZohoController extends Controller
{

    public function testAPI()
    {
        $param = [
            'headers' => [
                'If-Modified-Since' => date('c')
            ],
            'data' => [
                'page' => 1,
                'per_page' => 20,
            ]
        ];

        $response = $this->listOfRecords('Leads', $param);
        dd($response);
    }

    public function listOfRecords($module, array $param)
    {
        $record_api = new RecordApi();
        try {
            $response = $record_api->listOfRecords($module, $param);
            if ($response->getStatus() == 'success') {
                $crm_data = $response->getResults();
                return $crm_data;
            }
        } catch(ZohoException $e) {
            // Handle Exception and return
        }
    }
}
```

APIs
----

[](#apis)

Currently there are only 7 api wrappers. Those are follows:

- Record APIs
- Meta Data APIs (It also belong Module API)
- Note APIs
- Related List APIs
- Tag APIs
- Attachments APIs
- Query APIs

Documentation
-------------

[](#documentation)

See the documentation at : [Zoho API Wrapper](https://zoho-wrapper.readthedocs.io/en/latest/)

Contributing
------------

[](#contributing)

Contributions are **welcome** and will be fully **credited**.

I accept contributions via Pull Requests on [Github](https://github.com/asadku34/zoho-api-wrapper/pulls).

Issues
------

[](#issues)

If you discover any issues, please email at  also you can create issue on the issue tracker.

Credits
-------

[](#credits)

- [Asadur Rahman](https://github.com/asadku34)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](https://github.com/asadku34/zoho-api-wrapper/blob/master/LICENSE) for more information.

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity37

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity76

Established project with proven stability

 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 ~43 days

Recently: every ~182 days

Total

28

Last Release

1492d ago

Major Versions

1.0.9 → 2.0.12019-08-24

2.2.3 → 3.0.02021-02-18

PHP version history (3 changes)1.0.0PHP ^7.0

3.0.0PHP ~7.0

3.0.2PHP ~7.0|~8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2770949?v=4)[Sk Asadur Rahman](/maintainers/asadku34)[@asadku34](https://github.com/asadku34)

---

Top Contributors

[![asadku34](https://avatars.githubusercontent.com/u/2770949?v=4)](https://github.com/asadku34 "asadku34 (1 commits)")

---

Tags

apiwrapperoauth2REST APIZohoZoho CRMZOHO-OAUTH2ZOHO-API-V2Query-API

### Embed Badge

![Health badge](/badges/asad-laravel-zoho-api-wrapper/health.svg)

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

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)[asciisd/zoho

Laravel wrapper for Zoho CRM API v8

3854.8k](/packages/asciisd-zoho)[webleit/zohobooksapi

Zoho Books API v3 - PHP SDK

4987.2k1](/packages/webleit-zohobooksapi)

PHPackages © 2026

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