Starter KitAstraCMS

Introduction

Build modern content experiences with AstraCMS

AstraCMS is a modern headless content management system designed for developers and content teams. Build blogs, websites, and content-driven applications with our powerful API.

Getting Started

Core Concepts

Content Types

AstraCMS organizes your content with:

  • Posts - Your main content (articles, blog posts, pages)
  • Categories - Group posts into logical sections
  • Tags - Add flexible labels for filtering and discovery
  • Authors - Profile information for content creators

Workspaces

Each workspace is an isolated environment for your content. Create separate workspaces for different projects, environments, or clients.

API Overview

The Content Delivery API provides read-only access to your published content:

# List all posts
curl https://api.astracms.com/v2/posts \
  -H "Authorization: Bearer YOUR_API_KEY"

# Get a single post by slug
curl https://api.astracms.com/v2/posts/my-first-post \
  -H "Authorization: Bearer YOUR_API_KEY"

Last updated on

On this page