To authenticate with the Autom API, add the header x-api-key
to your request.
You can find your API key on your dashboard.
The host is autom.dev
All requests should be made with HTTPS
All of our endpoints accept the POST
method
You are required to add the header Content-Type: application/json
curl -X GET \
-H "Content-Type: application/json" \
-H "x-api-key: your_api_key" \
"https://autom.dev/api/usage"
{
"plan": "API",
"remaining": 748566
}