Authentication
All API routes require authentication in a form of an API key. You can obtain one API key by applying here.
If you already have some keys, you can view them on your account page.
To authenticate your request, you can provide your key with:
- an apikey GET parameter, or
- an X-API-KEY HTTP header
Request Ping Example
/api/v1/ping?apikey=YOUR_API_KEY
If everything works and you have provided a valid key, you should get:
{
"success": true,
"message": "Pong! Congratulations, you can access the API.",
"TrickysAPIinfo": {
"APIversion": "v1.1.0"
}
}