get_product_detail_by_isin
payoff.chRetrieves comprehensive structured-product detail by active ISIN from https://www.payoff.ch. Returns basic information, terms, market data, key figures, underlyings, similar products, and events, or a stale-input result when the ISIN is unavailable.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_detail_by_isin?
Retrieves comprehensive structured-product detail by active ISIN from https://www.payoff.ch. Returns basic information, terms, market data, key figures, underlyings, similar products, and events, or a stale-input result when the ISIN is unavailable. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass isin and get the result back without maintaining a scraper.
Response
{
"product": {},
"stale_input": {
"kind": "<string>",
"input": "<string>",
"message": "<string>"
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/f61012e4-d644-4b38-9530-1a688c29cad8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f61012e4-d644-4b38-9530-1a688c29cad8",
"variables": {
"isin": "CH1574005398"
}
}'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="f61012e4-d644-4b38-9530-1a688c29cad8") — the "get_product_detail_by_isin" function, which retrieves comprehensive structured-product detail by active ISIN from https://www.payoff.ch. Returns basic information, terms, market data, key figures, underlyings, similar products, and events, or a stale-input result when the ISIN is unavailable.. It takes isin (str). Return the result as structured JSON.