The versioned REST API under /api/v1 for programmatic access to websites and related resources.

Register

The API uses your existing platform account. It does not expose a register route.

See how to register in the admin panel guide

Authorization

POST your email and password to the login endpoint.

POST /api/v1/en/auth/login

Use the following request body shape:

{
  "email": "string",
  "password": "string"
}

You will receive a JSON body with this shape:

{
  "accessToken": "string"
}

On each subsequent request, set the authorization header as follows:

Authorization: Bearer <accessToken>

API endpoints

Every public /api/v1 route as a simple method + path catalog, auth, request hints, and links to matching MCP tools when available.