Endpoints
search-history
List recent searches for your team, paginated.
POST /api/v1/search-history
List recent searches for your team, paginated.
Request
{ "limit": 10, "cursor": "..." }Response
{
"searches": [/* ... */],
"nextCursor": "...",
"isDone": false
}limit is clamped to 1 to 50 (default 10). Pass the nextCursor back in subsequent calls to paginate.