> ## 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.

# Get created content

> Get one created content draft, including the full markdown body.

Returns the full draft plus schema suggestions, JSON-LD, and research sources when present.

### Path parameters

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

<ParamField path="contentId" type="string" required>
  Created content UUID. Obtain from [List created content](/api-reference/created-content/list).
</ParamField>

### Request

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

### Response

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

<ResponseField name="data" type="object">
  Full created-content payload.

  <Expandable title="Fields" />
</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",
    "content": "# How to choose an AI visibility platform\n\n...",
    "excerpt": "A practical guide...",
    "format": "article",
    "createdAt": "2026-07-20T12:00:00.000Z",
    "suggestedSchemaTypes": [],
    "jsonLd": [],
    "researchSources": [],
    "prompt": {
      "id": "prompt-uuid-123",
      "text": "What should buyers look for in AI visibility tools?"
    }
  }
}
```
