Getting Started
Introduction to Atlas CMS and how to fetch your first content through the Public API.
Welcome to Atlas CMS
Atlas CMS is a headless CMS — you define your data schema (Content Types) in the dashboard, fill it with content (Entries and Pages), and read published content through a REST API into any frontend stack (React, Vue, iOS, Android, etc.).
Three surfaces
| Surface | URL | Who uses it | Auth |
|---|---|---|---|
| Dashboard | https://cms.atlas.latellu.com | Content editors | Email + password |
| Public API | https://api.atlas.latellu.com/api/v1/public/* | Your frontend app | X-API-Key (atlas_live_...) |
| Management API | https://api.atlas.latellu.com/api/v1/manage/* | Scripts, CI, AI agents | X-API-Key (atlas_mgmt_...) |
This documentation covers the Public API (read) and Management API (write). Creating content types is done through the Atlas dashboard.
Base URL
| Environment | Base URL |
|---|---|
| Production | https://api.atlas.latellu.com/api/v1/public |
Request Headers
| Header | Required | Value |
|---|---|---|
X-API-Key | Yes, on every request | Your API key from the dashboard |
Content-Type | Only for requests with a JSON body | application/json |
Next Steps
- Follow the Quickstart — generate an API key, fetch entries, display content.
- Read Authentication — key scopes, environment flags, and security best practices.
- Browse the API Reference — full endpoint reference for Entry, Page, and Media.
- See Live Examples — six real frontends running against live Atlas workspaces.