Zutrix API

Everything in your Zutrix workspace — rank tracking, keyword research, site audits, backlinks, competitors, AI visibility, content and traffic — available over a clean REST API. If you can see it in the dashboard, you can automate it.

Base URL

https://api.zutrix.com/v1

  • ~46 endpoints across every Zutrix feature
  • Bearer API keys, JSON everywhere, snake_case fields, ISO-8601 UTC dates
  • Machine-readable spec at GET /v1/openapi.json and a discovery index at GET /v1

1. Create an API key

Go to zutrix.com/dashboard/settings/api and create a key. You can have up to 10 named keys; each key is shown once at creation and can be revoked at any time. Keys look like zutrix_live_....

2. Make your first request

Pass the key in the Authorization header. GET /v1/me returns the authenticated account, so it is the quickest way to confirm your key works:

Terminal
curl https://api.zutrix.com/v1/me \
  -H "Authorization: Bearer $ZUTRIX_API_KEY"

3. Explore your data

List your projects, then follow the project-scoped endpoints (keywords, rankings, backlinks, audits, and more):

Terminal
curl https://api.zutrix.com/v1/projects \
  -H "Authorization: Bearer $ZUTRIX_API_KEY"

Next steps