Everything is an API call away
Mojimoto is API-driven by design. Two REST surfaces cover the work — one for reading content into your front end, one for managing it programmatically — both authenticated with tokens you control.
Two surfaces, one model
The delivery API is your fast read path for published and preview content. The management API lets you create and update entries programmatically, for migrations, integrations and automation. Both speak REST and both work from the same content model, so what you write is exactly what you can later read.
- Delivery API for reading content
- Management API for creating and updating content
- A single, shared content model behind both
Authenticate with project tokens
Each project issues its own API tokens, scoped to what they are allowed to do. Grant a token read access for a public front end, preview access for a staging environment, or write access for an automated import. Tokens belong to the project, so access stays contained and easy to rotate.
- Read, preview and write scopes
- Tokens scoped per project
- Rotate or revoke without touching your model
Full reference in the docs
The complete endpoint reference, with request and response shapes for every surface, lives in the Mojimoto documentation. Start there for parameters, filtering and authentication details when you are ready to build against the API in earnest.