RevorRevor

查询潜客名单

GET/api/v2/websets

分页查询 API Key 所属用户的 Revor AI 潜客名单。需要 websets:read 权限。

Query 参数

参数默认值说明
limit201..100。
target_kind不筛选company 或 person。
cursor无上一页的 next_cursor,不可解析或修改。
cURL
curl "https://revor.ai/api/v2/websets?limit=20&target_kind=company"   -H "Authorization: Bearer sk-revor-REPLACE_ME"

响应

JSON
{
  "ok": true,
  "request_id": "req_xxx",
  "items": [
    {
      "id": "webset-uuid",
      "name": "北美挖掘机公司",
      "query": "北美地区的挖掘机制造商……",
      "target_kind": "company",
      "status": "verifying",
      "progress": {
        "stage": "verifying",
        "goal": 25,
        "verify_cap": 75,
        "verified": 31,
        "qualified": 18,
        "full": 12,
        "stop_reason": null,
        "updated_at": "2026-09-24T08:00:00.000Z"
      },
      "created_at": "2026-09-24T07:58:00.000Z",
      "started_at": "2026-09-24T07:58:10.000Z",
      "finished_at": null,
      "updated_at": "2026-09-24T08:00:00.000Z"
    }
  ],
  "next_cursor": null,
  "has_more": false
}

has_more=true 时把 next_cursor 原样传给下一次请求。该 cursor 只用于 REST 分页,不是 SSE 的 stream_cursor。