> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rocketblue.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List created content

> List created content drafts for a brand.

Returns paginated draft metadata (title, excerpt, prompt, featured image). Use [Get created content](/api-reference/created-content/get) to fetch the full markdown body.

### Path parameters

<ParamField path="brandId" type="string" required>
  Brand UUID.
</ParamField>

### Query parameters

<ParamField query="limit" default="100" type="integer">
  Items per page. Maximum 500.
</ParamField>

<ParamField query="page" default="1" type="integer">
  Page number (1-based).
</ParamField>

### Request

```bash theme={null}
curl -s \
  -H "x-api-key: YOUR_API_KEY" \
  "https://app.rocketblue.ai/api/v1/brands/BRAND_ID/contents?limit=50&page=1"
```

### Response

<ResponseField name="brandId" type="string">
  Brand UUID.
</ResponseField>

<ResponseField name="data" type="CreatedContent[]">
  Draft metadata rows, newest first.

  <Expandable title="CreatedContent object">
    <ResponseField name="prompt" type="object">
      Linked prompt id/text when available.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="paging" type="object">
  Standard paging object. See [Pagination](/pagination).
</ResponseField>

```json theme={null}
{
  "brandId": "brand-uuid-123",
  "data": [
    {
      "id": "content-uuid-123",
      "brandId": "brand-uuid-123",
      "title": "How to choose an AI visibility platform",
      "excerpt": "A practical guide...",
      "format": "article",
      "createdAt": "2026-07-20T12:00:00.000Z",
      "prompt": {
        "id": "prompt-uuid-123",
        "text": "What should buyers look for in AI visibility tools?"
      }
    }
  ],
  "paging": {
    "page": 1,
    "limit": 50,
    "total": 12,
    "nextPage": null
  }
}
```
