search_products
payoff.chSearches structured financial products on https://www.payoff.ch using full-text, product, market, issuer, and underlying filters. Returns 20 product summaries per page, pagination metadata, and filter counters on page 1.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches structured financial products on https://www.payoff.ch using full-text, product, market, issuer, and underlying filters. Returns 20 product summaries per page, pagination metadata, and filter counters on page 1. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, category, product_type, exchange, asset_class, market_expectation, maturity, callable_filter, currency, issuer, guarantor, multiple_underlyings, sort_by, sort_direction and get the result back without maintaining a scraper.
Response
{
"meta": {},
"counters": {},
"products": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/532dd8b4-c3ab-408f-b402-e6ca7ac8e145/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "532dd8b4-c3ab-408f-b402-e6ca7ac8e145",
"variables": {
"query": "",
"page": 1,
"category": "",
"product_type": "",
"exchange": "",
"asset_class": "",
"market_expectation": "",
"maturity": "",
"callable_filter": "",
"currency": "",
"issuer": "",
"guarantor": "",
"multiple_underlyings": "",
"sort_by": "",
"sort_direction": "asc"
}
}'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="532dd8b4-c3ab-408f-b402-e6ca7ac8e145") — the "search_products" function, which searches structured financial products on https://www.payoff.ch using full-text, product, market, issuer, and underlying filters. Returns 20 product summaries per page, pagination metadata, and filter counters on page 1.. It takes query (str), page (int), category (str), product_type (str), exchange (str), asset_class (str), market_expectation (str), maturity (str), callable_filter (str), currency (str), issuer (str), guarantor (str), multiple_underlyings (str), sort_by (str), sort_direction (str). Return the result as structured JSON.