List articles

Markdown

View as Markdown

GET /v1/articles

Returns a paginated list of published articles.

Request

curl "https://api.acme.dev/v1/articles?limit=2" \
  -H "Authorization: Bearer sk_live_..."

Response

{
  "object": "list",
  "has_more": true,
  "data": [
    { "id": "art_1", "title": "Quickstart" },
    { "id": "art_2", "title": "Installation" }
  ]
}

Related Articles