---
title: "List published articles for a manager"
description: "Returns published, Kismet-authored articles for the granted manager: editorial content with a bounded typed block body, author bylines, and a publisher-derived schema.org BlogPosting node builders re-point at their own pages. Draft content is never returned."
---

`GET /v1/developer/collections/{collection}/articles`

**Operation ID:** `listCollectionArticles`

Returns published, Kismet-authored articles for the granted manager: editorial content with a bounded typed block body, author bylines, and a publisher-derived schema.org BlogPosting node builders re-point at their own pages. Draft content is never returned.

## Contract status

| Field | Value |
| --- | --- |
| Maturity | `beta` |
| Required capability | `articles.read` |
| Freshness class | `published-content` |
| Quota cost | `1` |
| Operational owner | API + Developer Experience + Content |

All operations require a Kismet Developer Bearer credential. Collection and resource authority is resolved from the credential's installation grants; identifiers in the URL never grant access.

## Request parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `cursor` | query | string | no |  |
| `limit` | query | integer | no |  |
| `collection` | path | string | yes |  |

## Request body

This operation has no JSON request body.

## cURL

```sh
curl --request GET \
  "$KISMET_API_ORIGIN/v1/developer/collections/sand-sea-condos/articles" \
  --header "Authorization: Bearer $KISMET_DEVELOPER_API_KEY" \
  --header "Accept: application/json"
```

## Responses

| Status | Meaning |
| --- | --- |
| 200 | Success. |
| 400 | Invalid request parameters or body. |
| 401 | Missing, invalid, expired, or inappropriate credential/session. |
| 403 | Credential lacks the required grant/capability, or an origin/CSRF check failed. |
| 404 | The authorized resource was not found. |
| 429 | Rate limit or quota exceeded; inspect response metadata before retrying. |
| 503 | A required Kismet dependency is temporarily unavailable. |

### Success example

```json
{
  "data": [
    {
      "resourceType": "content",
      "type": "article",
      "id": "33333333-3333-4333-8333-333333333333",
      "slug": "three-perfect-days-in-sandbox-cove",
      "title": "Three perfect days in Sandbox Cove",
      "excerpt": "A long-weekend itinerary built around the tide pools.",
      "displayType": "default",
      "hero": {
        "url": "https://cdn.kismet.travel/sandbox/cove-hero.jpg",
        "alt": "Tide pools at dusk"
      },
      "author": {
        "name": "Jamie Sandbox",
        "title": "General Manager"
      },
      "categories": [
        "Travel guides"
      ],
      "publication": {
        "publishedAt": "2026-06-20T00:00:00.000Z",
        "updatedAt": "2026-07-01T00:00:00.000Z"
      },
      "links": {
        "self": "/v1/developer/collections/11111111-1111-4111-8111-111111111111/articles/three-perfect-days-in-sandbox-cove"
      }
    }
  ],
  "page": {
    "limit": 20,
    "nextCursor": null
  }
}
```

## Machine-readable sources

- [This page as Markdown](/api/reference/list-collection-articles.md)
- [Developer API OpenAPI v0.7.0](/openapi.json)
