Authentication
When requesting the Tapp API, you will need a API key — which can be created in the Tapp dashboard under API settings. In this guide, we'll look at how authentication works. API requests can be authenticated using an API key in two ways.
Using an API key header
Here's how to add the API key to the request header. Include the key in a header parameter called x-api-key
Example request with API key header
curl -H "X-API-Key: your-api-key-here" https://api.tapp.online
Using an API key query parameter
Here's how to add the API key as a parameter to the request. Include the key in a query parameter called key
Example request with API key query parameter
curl "https://api.tapp.online?apiKey=your-api-key-here"
Always keep your API key safe and reset it if you suspect it has been compromised.