Quickstart
- Install the library:
pip install pocketoptionapi-async
- Get your Pocket Option SSID:
Log in to Pocket Option, open DevTools, and copy your SSID cookie value. - Basic usage example:
from pocketoptionapi_async import AsyncPocketOptionClient import asyncio async def main(): SSID = "your-ssid-here" client = AsyncPocketOptionClient(SSID, is_demo=True) await client.connect() balance = await client.get_balance() print(balance) await client.disconnect() asyncio.run(main())
Want a custom trading bot? Let us build it for you!