Client Info API
Try our Client Info API
The Client Info APIs aim to provide standard information about the client’s device and location. You can use this API to deliver responsive content across various devices and browsers.
The APIs leverage the default metadata which is available from the client’s applications and devices. The APIs aim to provide an efficient way for this data to be parsed without having to build your own parser every time.
Client Info API Endpoint
https://dayadora.com/api/v1/client?api={API_KEY}
$.ajax({ url: "https://dayadora.com/api/v1/client", type: "GET", cache: false, datatype: "json", headers: { "Authorization": "Bearer {API_KEY}" }, success: function(response) { console.log(response); }, error: function(response) { console.log(response); } });
Optional Parameters
Key | Values |
---|---|
api | {api_key} |
Response Success
Status | Code | Output |
---|---|---|
success | 200 | {returns: 'json_object'} |
error | 203 | {message: "Your API limit for requesting Client information data has been consumed."} |
Response Error
Status | Code | Output |
---|---|---|
error | 403 | {message: "Forbidden. Unauthorized access"} |
JSON Results
Fetching result...