PHPackages                             raditzfarhan/innov8tif-ekyc - 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. raditzfarhan/innov8tif-ekyc

ActiveLibrary

raditzfarhan/innov8tif-ekyc
===========================

Innov8tif eKYC SDK

1.0.3(3y ago)010MITPHPPHP ^7.4|^8.0

Since Oct 27Pushed 3y ago1 watchersCompare

[ Source](https://github.com/raditzfarhan/innov8tif-ekyc)[ Packagist](https://packagist.org/packages/raditzfarhan/innov8tif-ekyc)[ Docs](https://github.com/raditzfarhan/innov8tif-ekyc)[ RSS](/packages/raditzfarhan-innov8tif-ekyc/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (6)Used By (0)

Innova8tif eKYC
===============

[](#innova8tif-ekyc)

[![Latest Version on Packagist](https://camo.githubusercontent.com/29a2b62b665762bb3a400235708b804ecd1b99ed28c54fb3e6e995539639e421/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72616469747a66617268616e2f696e6e6f76387469662d656b79632e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/raditzfarhan/innov8tif-ekyc)[![Total Downloads](https://camo.githubusercontent.com/20e4acec1bee8c14d2db2b7654a098058b4292cbca29ed970914749c9c6c1592/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72616469747a66617268616e2f696e6e6f76387469662d656b79632e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/raditzfarhan/innov8tif-ekyc)[![GitHub Actions](https://github.com/raditzfarhan/innov8tif-ekyc/actions/workflows/main.yml/badge.svg)](https://github.com/raditzfarhan/innov8tif-ekyc/actions/workflows/main.yml/badge.svg)

Simple SDK for Innov8tif eKYC API.

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

[](#installation)

You can install the package via composer:

```
composer require raditzfarhan/innov8tif-ekyc
```

Available Methods
-----------------

[](#available-methods)

### OkeyDoc

[](#okeydoc)

#### Philippines

[](#philippines)

- `drivingLicense(string $idImageBase64Image, ?mixed $caseNo)`
- `sss(string $idImageBase64Image, ?mixed $caseNo)`
- `umid(string $idImageBase64Image, ?mixed $caseNo)`
- `voterId(string $idImageBase64Image, ?mixed $caseNo)`
- `postalId(string $idImageBase64Image, ?mixed $caseNo)`
- `prcProfessionalIdCard(string $idImageBase64Image, ?mixed $caseNo)`
- `nationalId(string $idImageBase64Image)`

#### Parameters

[](#parameters)

NameTypeRequiredDescriptionidImageBase64ImagestringYesImage in base64 corresponds to the method usedcaseNostring|nullNoReference code given by userFor more details, refer [here](https://api2-ekycapis.innov8tif.com/okaydoc/okaydoc-all/supported-documents/philippines).

### OkeyID

[](#okeyid)

- `ocr(string $base64ImageString, ?string $backImage, ?string $docTypeEnabled, ?string $faceImageEnabled, ?string $imageEnabled, ?string $imageFormat)`
- `documentType(string $base64ImageString, string $backImage, string $imageFormat, ?bool $imageEnabled)`

#### Parameters

[](#parameters-1)

NameTypeRequiredDescriptionbase64ImageStringstringYesFront id card/passport image in base64backImagestringNo on `ocr`, Yes on `documentType`Reference code given by userdocTypeEnabledstringNoSet to `true` - Document type will be returned. Default to `true`.faceImageEnabledstringNoSet to `true` - Cropped face image will be returned. Default to `true`.imageEnabledstring|booleanNoSet to `true` - Cropped document image will be returned. Default to `true`.imageFormatstringNo on `ocr`, Yes on `documentType`Clarify the image format jpg, jpeg, png, bmp, gif, tiff, tif. Leave blank if unsure.For more details, refer [here](https://api2-ekycapis.innov8tif.com/okayid/okayid-all/ocr-api).

Usage
-----

[](#usage)

#### OkeyDoc

[](#okeydoc-1)

```
use RaditzFarhan\Innov8tifEkyc\OkeyDoc\PH\Client;
use RaditzFarhan\Innov8tifEkyc\Exceptions\APIError;

...

$client = new Client($apiKey);

$caseNo = 'CASE 1234';
$idImageBase64Image = '/9j/4AAQSkZJ...fYs1wRtQHt//Z\r\n';

try {
    $response = $client->drivingLicense($idImageBase64Image, $caseNo);

    // success, do something with $response
} catch (APIError $e) {
    // Catch API Error
    // $e->getStatus()
    // $e->getMessage()
    // $e->getMessageCode()
    // $e->getMetaData()
    // $e->getResponseData() // raw response
    throw $e;
} catch (\Throwable $th) {
    throw $th;
}
```

#### OkeyID

[](#okeyid-1)

```
use RaditzFarhan\Innov8tifEkyc\OkeyID\Client;
use RaditzFarhan\Innov8tifEkyc\Exceptions\APIError;

...

$client = new Client($apiKey);

$base64ImageString = '/9j/4AAQSkZJ...fYs1wRtQHt//Z\r\n';

try {
    $response = $client->ocr($base64ImageString);

    // success, do something with $response
} catch (APIError $e) {
    // Catch API Error
    // $e->getStatus()
    // $e->getMessage()
    // $e->getResponseData() // raw response
    throw $e;
} catch (\Throwable $th) {
    throw $th;
}
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

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

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

[](#contributing)

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

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Farhan](https://github.com/raditzfarhan)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

4

Last Release

1293d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1203676?v=4)[Raditz Farhan](/maintainers/raditzfarhan)[@raditzfarhan](https://github.com/raditzfarhan)

---

Top Contributors

[![raditzfarhan](https://avatars.githubusercontent.com/u/1203676?v=4)](https://github.com/raditzfarhan "raditzfarhan (19 commits)")

---

Tags

raditzfarhaninnov8tif-ekyc

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/raditzfarhan-innov8tif-ekyc/health.svg)

```
[![Health](https://phpackages.com/badges/raditzfarhan-innov8tif-ekyc/health.svg)](https://phpackages.com/packages/raditzfarhan-innov8tif-ekyc)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k21](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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