PHPackages                             craymend/accuratebackground-php - 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. craymend/accuratebackground-php

ActiveLibrary[API Development](/categories/api)

craymend/accuratebackground-php
===============================

Php SDK for Accurate background checks API

05PHP

Since Apr 22Pushed 5y ago1 watchersCompare

[ Source](https://github.com/craymend/accuratebackground-php)[ Packagist](https://packagist.org/packages/craymend/accuratebackground-php)[ RSS](/packages/craymend-accuratebackground-php/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Accurate Background Checks API SDK For Laravel
==============================================

[](#accurate-background-checks-api-sdk-for-laravel)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

Query Accurate API for Candidates and Orders

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

[](#installation)

Via composer.

```
composer require craymend/accuratebackground-php

```

Run

```
artisan vendor:publish

```

Now in your .env file, define your Accurate credentials:

```
ACCURATE_API_CLIENT_ID=
ACCURATE_API_SECRET=
```

Check Accurate API is available example
---------------------------------------

[](#check-accurate-api-is-available-example)

```
use Craymend\AccurateSdk\Api\ApiBase;

$queryObj = new ApiBase();

$response = $queryObj->checkAlive();
```

Create Accurate candidate example
---------------------------------

[](#create-accurate-candidate-example)

```
use Craymend\AccurateSdk\Api\Candidate;

$data = [
    'firstName' => 'John',
    'lastName' => 'PASS',
    'email' => 'john@email.com',
    'address' => '123 Main St.',
    'city' => 'Irvine',
    'region' => 'CA',
    'country' => 'US',
    'postalCode' => '12345',
    'dateOfBirth' => '1990-01-01',
    'phone' => '1231231234',
    'ssn' => '123121234',
];

$queryObj = new Candidate();
$response = $queryObj->createCandidate($data);

if($response->status === 'success'){
    $candidate = $response->data;
    $candidateId = $candidate->id;
}
```

Create Accurate order example
-----------------------------

[](#create-accurate-order-example)

```
use Craymend\AccurateSdk\Api\Order;

$data = [
    'candidateId' => $candidateId,
    'packageType' => 'PKG_BASIC',
    'workflow' => 'EXPRESS',
    'jobLocation.city' => 'Hollywood',
    'jobLocation.region' => 'CA',
    'jobLocation.country' => 'US'
];

$queryObj = new Order();
$response = $queryObj->createOrder($data);

if($response->status === 'success'){
    $order = $response->data;

    echo json_encode($order);
}
```

License
-------

[](#license)

The MIT License (MIT).

###  Health Score

16

—

LowBetter than 5% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/cc58193b4288f8668a6051d84c2051ea1354e59445fbaa54e34c013889bdec8a?d=identicon)[craymend](/maintainers/craymend)

### Embed Badge

![Health badge](/badges/craymend-accuratebackground-php/health.svg)

```
[![Health](https://phpackages.com/badges/craymend-accuratebackground-php/health.svg)](https://phpackages.com/packages/craymend-accuratebackground-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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