Authentication
API key vs Firebase token, and which to use.
Create an API key
In the Testzilla web app, open your account settings and create an API key under API Keys. Copy it somewhere safe; it is shown only once.
Set the base URL
All REST endpoints live under the /v1 base path:
https://api.testzilla.ai/v1List your projects
Authenticate with the x-api-key header.
curl https://api.testzilla.ai/v1/projects \ -H "x-api-key: $TESTZILLA_API_KEY"const res = await fetch("https://api.testzilla.ai/v1/projects", { headers: { "x-api-key": process.env.TESTZILLA_API_KEY },});const projects = await res.json();import os, requestsr = requests.get( "https://api.testzilla.ai/v1/projects", headers={"x-api-key": os.environ["TESTZILLA_API_KEY"]},)print(r.json())Authentication
API key vs Firebase token, and which to use.
API Reference
Every endpoint, with a built-in playground.