Welcome to the IDQ, Inc. Developer Portal!
The DQ Developer portal serves as a hub to access documentation and resources related to DQ APIs. It provides a seamless and organized experience to learn, test, and integrate DQ APIs.
The DQ Developer portal serves as a hub to access documentation and resources related to DQ APIs. It provides a seamless and organized experience to learn, test, and integrate DQ APIs.
The DQ API is a REST API that uses JSON formatting for payloads and responses. To start working with the API, ensure you have received your credentials for the portal login. Having a valid user account, you will be able to access the DQ API information to:
View and manage your API keys for authentication
Find up-to-date API reference documentation with the description of endpoints, their parameters, and possible responses
Try to make requests with the prepopulated values
Download definition files and automatically generate code to start integrating the endpoints
The DQ API uses API keys to authenticate requests. You can view and manage your API keys on the DQ Developer Portal.
Note: KEEP YOUR API KEYS SECRET. DO NOT SHARE YOUR API KEYS WITH OTHERS OR EXPOSE THEM IN ANY CLIENT-SIDE CODE.
To get your API keys:
On the Developer Portal, select Sign in and enter the provided credentials.
On the top right, select Profile.
Under Subscriptions, select the Primary or Secondary key to authenticate your requests.
To make a request, you can supply your API key as either a header or as a query parameter.
As a Header
GET /api/resource HTTP/1.1
Host: your-api-management-instance.azure-api.net
Authorization: ApiKey your_api_key_here
As a Query Parameter
GET /api/resource?apikey=your_api_key_here HTTP/1.1
Host: your-api-management-instance.azure-api.net
API requests made over plain HTTP or without authentication will fail.
