# 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](/docs/api).

GET `/brands/:slug/articles`

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

Responses

200 Articles

```
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

200 Article

404 Not found

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

[

← Previous

Products

](/docs/api/products)

---
Source: https://www.anomalia.so/docs/api/articles
