Endpoint
List campaigns
GET/api/public/v1/campaignsread
List the user's outbound campaigns (conferences). Paginated: pass the returned next_cursor to fetch the next page while has_more is true.
Request
curl "https://sayintel.com/api/public/v1/campaigns" \ -H "Authorization: Bearer $SAYINTEL_TOKEN"
Try it out
Try it outGET/api/public/v1/campaignsread
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
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| limit | query | number | no | — |
| cursor | query | string | no | Opaque cursor from a previous call's next_cursor. Omit for the first page. |
Response
{
"ok": true,
"tool": "list_campaigns",
"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 list_campaigns. MCP setup.