Articles

Pull your published blog articles as JSON to render them on any stack (headless). Authenticate with a Bearer API key, same as every other endpoint — see Overview.

GET /brands/:slug/articles

List published articles (summaries only, no body). Paginate with ?limit (default 50, max 100) and ?offset.

Responses
200Articles
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/articles \
  -H "Authorization: Bearer $TOKEN"
GET /brands/:slug/articles/:id

One published article with full content — markdown, rendered HTML and Article JSON-LD. :id accepts the article id OR its slug.

Responses
200Article
404Not found
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/articles/:id \
  -H "Authorization: Bearer $TOKEN"