Skip to content

Quickstart

  1. 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.

  2. Set the base URL

    All REST endpoints live under the /v1 base path:

    https://api.testzilla.ai/v1
  3. List your projects

    Authenticate with the x-api-key header.

    Terminal window
    curl https://api.testzilla.ai/v1/projects \
    -H "x-api-key: $TESTZILLA_API_KEY"