sayintel
Endpoint

Search speakers

GET/api/public/v1/speakersread

Search speakers across the user's campaigns. Filter by campaign_id, name (ilike), company (ilike), prequalify_verdict, reply_status, or selected. Paginated: pass next_cursor while has_more is true.

Request

curl "https://sayintel.com/api/public/v1/speakers" \
  -H "Authorization: Bearer $SAYINTEL_TOKEN"

Try it out

Try it outGET/api/public/v1/speakersread

Sent as a bearer token to this site only, and kept in this tab's session storage. It is never written to disk or sent anywhere else.

Paste an API key to run.

Query parameters

NameInTypeRequiredDescription
campaign_idquerystringno
namequerystringno
companyquerystringno
prequalify_verdictquerystringqualified | unsure | disqualifiedno
reply_statusquerystringno
selectedquerybooleanno
limitquerynumberno
cursorquerystringnoOpaque cursor from a previous call's next_cursor. Omit for the first page.

Response

{
  "ok": true,
  "tool": "search_speakers",
  "kind": "read",
  "data": { ... },
  "error": null
}

Notes

  • Scope required: read. How scopes work.
  • Paginated. Pass the returned next_cursor while has_more is true.
  • Same capability over MCP as the tool search_speakers. MCP setup.