GET Global Search​
GET
/global-search
Search across subscribers, campaigns, funnels, and companies simultaneously. Results are permission-scoped: only entities the current user has access to are returned. Returns up to 100 results per category by default (filterable via hook).
Authorizations​
ApplicationPasswords
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Type
API Key (header: Authorization)
Parameters​
Query Parameters
search*
Search term. If empty, returns empty arrays for all categories.
Type
Requiredstring
scope
Limit search to a specific category. Defaults to all.
Type
string
Valid values
"all""subscribers""campaigns""funnels""companies"Default
"all"Responses​
Search results grouped by category.
application/json
JSON
{
"subscribers": [
{
"id": 0,
"email": "string",
"first_name": "string",
"last_name": "string",
"full_name": "string",
"photo": "string"
}
],
"campaigns": [
{
"id": 0,
"title": "string",
"status": "string"
}
],
"funnels": [
{
"id": 0,
"title": "string",
"status": "string"
}
],
"companies": [
{
"id": 0,
"name": "string",
"logo": "string"
}
]
}