edgepress / api reference
v1.0 · endpoints
Tenant API

Everything the admin can do,
over HTTP.

Posts, pages, media, users, settings — scriptable from a CLI, an agent, or any HTTP client.

v1.0
endpoints
OpenAPI 3.1 · live from /openapi.json
Stable contract
  1. 01

    Create a personal access token

    In your tenant admin, open API tokens and issue one. The token is shown exactly once — copy it into a secret manager.

    /admin/settings/api-tokens
  2. 02

    Set the authorization header

    Send the token with every request. Bearer prefix is required; the token is epat_ followed by 40 base32 characters.

    Authorization: Bearer epat_…
  3. 03

    Call any endpoint under /api/v1/

    Base URL is your tenant hostname. The same handler serves the admin UI — an API call is just a scripted admin action.

    https://<tenant>.edgepress.cc/api/v1/…
Rate limit60 req / min / token Read-only tokensGET · HEAD · OPTIONS Non-GET on read-only403 read_only_token
Reference

All endpoints

Grouped by resource. Click any operation to see request & response shape, try it live, and copy a code sample.