The Junar API enables direct access to Junar data catalog and engine from your application, for the purpose of discovering data streams and dashboards, invoking data streams, and soon... collecting data and publishing it as data streams. It uses a RESTful interface and returns data in JSON.
Data streams invoked through the API provide online and standarized access to data contained in HTML pages, XLS, CSV and other similar file types available on Internet.
Any doubts? Call junar.developers on Skype.
The Junar API requires a key to operate.
Get one and access to any resource through it.
Jump right into the API resource documentation to get in touch with the requests and methods you can use.
The Junar API accepts RESTful requests.
A typical request will look like this:http://apisandbox.junar.com/datastreams/invoke/TEPCO-STOCK-QUOTE?auth_key=YOUR_API_KEY
A few things to note in the request above:
/datastreams/invoke/
This is an invoke request, that will return a json response. The entire resources descriptions are available in the API resource documentation.
TEPCO-STOCK-QUOTE
This is the GUID of the data stream you are accessing. You will always find this GUID in the Data Stream Details page, making a data stream search through the API, or in many other places.
auth_key=YOUR_API_KEY
This is the key from step 1. You'll need it for every request.
Your response will be returned as JSON. This is currently the only supported return type in the API.
To understand the format of the result field, read the API resource documentation.