Skip to Content
DocsREST APIOverview

Overview

The current version of REST API is 1.

REST API supports two types of authentication API Key and OAuth 2.0 as described in the Authentication subsections

The response of any request is JSON in the following form:

{"status":<status>,"result":<result object/array>}

where <status> can be “success” or “error”. If <status> is “success” then “result” contains the result, which can be JSON object or array depending on the request. If <status> is “error”, “result” contains the error message. For example:

{"status":"error","result":{"message":"apiKey parameter is required."}}
Last updated on