dealnews/api-client

A php client for accessing the DealNews api

1.0.1 2017-04-20 03:27 UTC

This package is auto-updated.

Last update: 2024-04-16 01:04:04 UTC


README

A php client for accessing the DealNews api

Basic Example

require 'vendor/autoload.php';

$client = new \DealNews\API\Client\HTTP ("YOUR_API_KEY");

// perform a simple get request to an api endpoint
$response = $client->get("/features");

// echoes 200
echo $response['status'];

// dumps out all response headers
var_dump($response['headers']);

// echoes response body
echo $response['body'];