Skip to main content
GET
/
blogs
List Published Blog Posts
curl --request GET \
  --url https://api.example.com/blogs
Returns an array of all published blog posts with their content and metadata, ordered by most recent first. This endpoint does not require authentication.

Request

curl -X GET "https://app.shipstar.ai/api/v1/blogs"

Response

Returns an array of blog post objects. Each post includes markdown content and metadata.

Example Response

200
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "slug": "weekly-update-march-31-2025",
    "content": "# What We Shipped This Week\n\nThis week we focused on...",
    "period_start": "2025-03-24T00:00:00Z",
    "period_end": "2025-03-31T23:59:59Z",
    "published_at": "2025-03-31T12:00:00Z",
    "created_at": "2025-03-31T10:00:00Z"
  }
]