get_organization_details
app.spheriq.chFetches the full public profile for one foundation or nonprofit from https://app.spheriq.ch by organization slug. Returns funding guidance, exclusions, NKS classifications, impact areas, registry data, people, SDGs, funding history, and contacts.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_organization_details?
Fetches the full public profile for one foundation or nonprofit from https://app.spheriq.ch by organization slug. Returns funding guidance, exclusions, NKS classifications, impact areas, registry data, people, SDGs, funding history, and contacts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"source_url": "<string>",
"stale_input": {
"kind": "<string>",
"input": "<string>",
"message": "<string>"
},
"organization": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/a3a709c7-1553-464f-aaef-a5775f1e4c06/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "a3a709c7-1553-464f-aaef-a5775f1e4c06",
"variables": {
"slug": "ernst-goehner-stiftung"
}
}'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="a3a709c7-1553-464f-aaef-a5775f1e4c06") — the "get_organization_details" function, which fetches the full public profile for one foundation or nonprofit from https://app.spheriq.ch by organization slug. Returns funding guidance, exclusions, NKS classifications, impact areas, registry data, people, SDGs, funding history, and contacts.. It takes slug (str). Return the result as structured JSON.