# search-history (/docs/api/endpoints/search-history)



`POST /api/v1/search-history`

List recent searches for your team, paginated.

**Request**

```json
{ "limit": 10, "cursor": "..." }
```

**Response**

```json
{
  "searches": [/* ... */],
  "nextCursor": "...",
  "isDone": false
}
```

`limit` is clamped to 1 to 50 (default 10). Pass the `nextCursor` back in subsequent calls to paginate.
