search_organizations
app.spheriq.chSearches the Swiss nonprofit database at https://app.spheriq.ch for foundations and organizations. Returns paginated records with descriptions, resolved NKS topics and target groups, geographic reach, and organizational metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_organizations?
Searches the Swiss nonprofit database at https://app.spheriq.ch for foundations and organizations. Returns paginated records with descriptions, resolved NKS topics and target groups, geographic reach, and organizational metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, page, page_size and get the result back without maintaining a scraper.
Response
{
"items": [
{}
],
"query": "<string>",
"category": "<string>",
"pagination": {
"page": 0,
"has_next": true,
"next_page": 0,
"page_size": 0,
"total_items": 0,
"total_pages": 0
},
"resolved_category": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/22d70921-f378-45a0-954e-17a9e9d15076/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "22d70921-f378-45a0-954e-17a9e9d15076",
"variables": {
"query": "",
"category": "",
"page": 1,
"page_size": 10
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="22d70921-f378-45a0-954e-17a9e9d15076") — the "search_organizations" function, which searches the Swiss nonprofit database at https://app.spheriq.ch for foundations and organizations. Returns paginated records with descriptions, resolved NKS topics and target groups, geographic reach, and organizational metadata.. It takes query (str), category (str), page (int), page_size (int). Return the result as structured JSON.