elliptic/elliptic-sdk

Elliptic SDK for PHP - A Guzzle wrapper for connecting to Elliptic APIs

v0.7.2 2023-05-16 11:43 UTC

This package is auto-updated.

Last update: 2024-04-16 13:49:07 UTC


README

Installation

Composer

composer require elliptic/elliptic-sdk

Usage

The SDK provides an instance of the popular Guzzle HTTP client, adding the necessary steps to authenticate each request using your Elliptic API key and secret.

use Elliptic\AML;

$aml = new AML([
    'key' => 'YOUR_ELLIPTIC_API_KEY',
    'secret' => 'YOUR_ELLIPTIC_API_SECRET',
]);

// $aml->client is an instance of GuzzleHttp\Client
$response = $aml->client->get('/v2/analyses');

API Documentation

Documentation for Elliptic APIs can be found at the Elliptic Developer Center

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE and NOTICE for more information.