Authentication

Authenticate your api calls by providing your api key in the header. You can retrieve and manage your api keys in the dashboard.

We are offering two API keys: one development and a live one. The live api key is only available after you subscribed.

Headers

HeaderValue
x-api-keyyour api key from the dashboard

Examples

This is an example of how to authenticate your api calls in python with the requests library.

import requests
requests.post("https://api.doqs.dev/v1/templates", headers={"x-api-key": "your api key"})