
PredictHQ API Client for Javascript
PredictHQ is the demand intelligence company combining real-world events into one global source of truth to help businesses better understand demand and plan for the future.
Installation
npm install predicthq
Usage
We support all the endpoints available in our API.
oauth2
accounts
events
places
Please refer to our API Documentation for a description of each endpoint.
Initialising the SDK
const phq = ; // Initialises PredictHQ client library using your access token// Note: You can find/create your access token at https://control.predicthq.com/clientsconst client = access_token: 'Acc3sS-t0keN';
ES6 Usage
;// Initialises PredictHQ client library using your access token// Note: You can find/create your access tnoken at https://control.predicthq.com/clientsconst client = access_token: 'Acc3sS-t0keN';
NodeJS
You will need to bring your own fetch library
// npm install node-fetchconst nodeFetch = ; const phq = ; // Initialises PredictHQ client library using your access token// Note: You can find/create your access token at https://control.predicthq.com/clientsconst client = access_token: 'Acc3sS-t0keN' fetch: nodeFetch;
Events endpoint
Additional examples are available in usecases/events directory.
// Basic event search without any parameters. By default, it will return the first ten events.clientevents ;