Marketplace
No threads yet
Live

get_pocket_option_available_assets

pocketoption.com

Returns all assets currently available on the Pocket Option demo platform, including category, payout percentage, and live trading status, optionally filtered by category. Reads https://pocketoption.com.

Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_pocket_option_available_assets?

Returns all assets currently available on the Pocket Option demo platform, including category, payout percentage, and live trading status, optionally filtered by category. Reads https://pocketoption.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "assets": [
    {
      "name": "<string>",
      "category": "<string>",
      "is_available": true,
      "trading_status": "<string>",
      "payout_percentage": 0
    }
  ],
  "source": "<string>",
  "platform": "<string>",
  "timezone": "<string>",
  "category_filter": "<string>",
  "data_relevant_at": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d2bdcf39-dc62-4f80-abab-28db68bc0b53/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d2bdcf39-dc62-4f80-abab-28db68bc0b53",
    "variables": {
        "category": "all"
    }
}'

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="d2bdcf39-dc62-4f80-abab-28db68bc0b53") — the "get_pocket_option_available_assets" function, which returns all assets currently available on the Pocket Option demo platform, including category, payout percentage, and live trading status, optionally filtered by category. Reads https://pocketoption.com..

It takes category (str). Return the result as structured JSON.