# List Smart Views

`GET https://api.tweetsmash.com/v1/views`

List all of your Smart Views (saved filtered views). Each view has a slug used to read its bookmarks or manage it. POST to the same path (name, base_query) to create one.

### Header parameters

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

### Response

```json
{
  "status": true,
  "data": [
    {
      "id": "1",
      "slug": "reading-workflow",
      "name": "Reading Workflow",
      "base_query": "",
      "triage_buckets": null,
      "default_sort": null
    }
  ]
}
```

---

Full reference: https://www.tweetsmash.com/api-docs/list-smart-views
