Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 444 Bytes

readme.md

File metadata and controls

31 lines (22 loc) · 444 Bytes

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);