/PHP-Icons8

PHP SDK for running queries against the thousands of icons provided by Icons8. Includes recursive searches.

Primary LanguagePHPMIT LicenseMIT

PHP-Icons8

PHP SDK for running queries against the millions of icons provided by Icons8. Includes recursive searches.

Supports

  • Searches

Requires

Sample Search

$client = new onassar\Icons8\Base();
$client->setAPIKey('***');
$client->setLimit(10);
$client->setOffset(0);
$results = $client->search('love') ?? array();
print_r($results);
exit(0);