Pocketoption APIpocketoption.com ↗
Retrieve real-time information about tradable assets on Pocket Option, including current payout rates and weekly trading schedules to inform your trading decisions. Use this data to discover which assets are available for trading and plan your strategy around their scheduled availability and potential returns.
curl -X GET 'https://api.parse.bot/scraper/0121ce7c-6b1a-473d-aac5-c0db7db636e7/get_trading_assets?category=Currency' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all assets currently available for trading on the Pocket Option demo platform, with their payout percentages and trading status. Returns assets across all categories (Currency, Commodities, Stocks, Cryptocurrencies, Indices) or filtered to a single category. All times are relative to the moment of the request.
| Param | Type | Description |
|---|---|---|
| category | string | Filter by asset category. Case-insensitive. When omitted, all categories are returned. |
{
"type": "object",
"fields": {
"total": "integer count of assets returned",
"assets": "array of asset objects with category, symbol, payout_percent, and is_trading"
},
"sample": {
"data": {
"total": 130,
"assets": [
{
"symbol": "EUR/USD OTC",
"category": "Currency",
"is_trading": true,
"payout_percent": 92
},
{
"symbol": "AUD/CAD OTC",
"category": "Currency",
"is_trading": true,
"payout_percent": 92
}
]
},
"status": "success"
}
}About the Pocketoption API
The Pocketoption API on Parse exposes 2 endpoints for the publicly available data on pocketoption.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.