dealnews/api-client

A php client for accessing the DealNews api

Installs: 7 780

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 0

pkg:composer/dealnews/api-client

1.0.1 2017-04-20 03:27 UTC

This package is auto-updated.

Last update: 2025-09-16 04:26:52 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'];