petermartinez/datafinder-php

There is no license information available for the latest version (0.0.3) of this package.

Basic SDK for Datafinder.com API I Details @ https://datafinder.com/api/overview

0.0.3 2015-11-23 22:54 UTC

This package is not auto-updated.

Last update: 2024-05-11 16:02:09 UTC


README

Basic SDK for Data Finder API.

Dependencies

PHP 5.2+

Guzzle HTTP Client

Getting Started

Install

composer require petermartinez/datafinder-php

Initializing Datafinder

require_once('vendor/autoload.php');
require_once('src/Datafinder/Datafinder.php');

$search = array();
	$search['d_first']  = "";
	$search['d_last']  = "";
	$search['d_zip'] = "";
	$search['d_fulladdr'] = "";
	$search['d_city']  = "";
	$search['d_state'] = "";
$dataFinder = new Datafinder\Datafinder("APIKEY");
$results = $dataFinder->contactAppend("email",$search);
echo "<pre>";
print_R($results);

Examples

Please see example.php for more information.