An open API service indexing awesome lists of open source software.

https://github.com/buchin/termapi-client

Client for Term API
https://github.com/buchin/termapi-client

Last synced: 6 months ago
JSON representation

Client for Term API

Awesome Lists containing this project

README

          

# Term API Client
Client for consuming Term API

## Installation
composer require buchin/termapi-client dev-master

## Usage

termapi();

### Recent Terms:

````
$api = new TermApi($options['token']);
$api->recent($options);
````

### Popular Terms

````
$api = new TermApi($options['token']);
$api->popular($options);
````

### Insert Keywords

````
$keyword = 'makan sehat';
$api = new TermApi($options['token']);
$api->insert($keyword);
````