Marketplace
No threads yet
Live

get_pocket_option_weekly_trading_schedule

pocketoption.com

Returns Pocket Option's asset trading schedule for a selected weekday, including UTC+2 trading hours, payout percentages when available, and live status. 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_weekly_trading_schedule?

Returns Pocket Option's asset trading schedule for a selected weekday, including UTC+2 trading hours, payout percentages when available, and live status. 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 day and get the result back without maintaining a scraper.

Response

{
  "day": "<string>",
  "count": 0,
  "assets": [
    {
      "name": "<string>",
      "category": "<string>",
      "trading_hours": [
        {
          "end": "<string>",
          "start": "<string>"
        }
      ],
      "trading_status": "<string>",
      "is_available_now": true,
      "payout_percentage": 0
    }
  ],
  "source": "<string>",
  "timezone": "<string>",
  "day_number": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0106c685-d408-41dd-aa73-8e76ec5378d4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0106c685-d408-41dd-aa73-8e76ec5378d4",
    "variables": {
        "day": "today"
    }
}'

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="0106c685-d408-41dd-aa73-8e76ec5378d4") — the "get_pocket_option_weekly_trading_schedule" function, which returns Pocket Option's asset trading schedule for a selected weekday, including UTC+2 trading hours, payout percentages when available, and live status. Reads https://pocketoption.com..

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