Live
get_filter_options
payoff.chReturns all current structured-product filter options and live counts from https://www.payoff.ch, including category, issuer, maturity, callable, and underlying choices.
Parameters1
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_filter_options?
Returns all current structured-product filter options and live counts from https://www.payoff.ch, including category, issuer, maturity, callable, and underlying choices. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass timeout_seconds and get the result back without maintaining a scraper.
Response
{
"issuers": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"callables": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"exchanges": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"categories": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"currencies": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"guarantors": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"maturities": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"asset_classes": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"subcategories": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"total_products": 0,
"underlying_filters": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
],
"market_expectations": [
{
"num": "<string>",
"ref": "<string>",
"name": "<string>",
"count": 0
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/70ef13cc-4fdd-4abf-8dfe-3d12168c949e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "70ef13cc-4fdd-4abf-8dfe-3d12168c949e",
"variables": {
"timeout_seconds": 35
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="70ef13cc-4fdd-4abf-8dfe-3d12168c949e") — the "get_filter_options" function, which returns all current structured-product filter options and live counts from https://www.payoff.ch, including category, issuer, maturity, callable, and underlying choices.. It takes timeout_seconds (int). Return the result as structured JSON.