# Get a Bookmark (full content)

`GET https://api.tweetsmash.com/v1/bookmarks/:id`

Retrieve a single bookmark with its FULL content. By default the response includes the X Article body, the unrolled thread, and notes; use the `include` query parameter to narrow or add replies. The extra content is returned under `full_content`.

### Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | Yes | The tweet/bookmark id. |

### Header parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `Authorization` | string | Yes | Your secret API key. Should be provided as a Bearer token. |

### Query parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `include` | string | No | Comma-separated list of extra content to include: article,thread,notes,replies. Defaults to article,thread,notes. |

### Response

```json
{
  "status": true,
  "data": {
    "post_id": "1938682607145034084",
    "tweet_details": {},
    "full_content": {
      "article_text": null,
      "notes": null,
      "thread": []
    }
  }
}
```

---

Full reference: https://www.tweetsmash.com/api-docs/get-bookmark
