Public Endpoints
Last updated
Was this helpful?
Public endpoints return data without authentication.
Unlike the Private API, the Public API routes through a single gateway. Each path prefix maps to the same host:
There is no single gateway. Each path prefix maps to its own service:
/api/coins
https://wallet-mutator-view.outpoll.com
/api/events/*
https://event-service.outpoll.com
/api/categories
https://event-service.outpoll.com
/api/tags/*
https://event-service.outpoll.com
Use HTTPS for every request.
This host serves every public REST endpoint in this section.
No authentication required.
Public API Overview for the shared quickstart, errors, and pagination rules.
Search Events for market discovery and filtering.
Get Available Coins for supported assets and collateral metadata.
Get Categories for category filters and navigation.
Get Popular Tags for trending discovery tags.
Use the gateway directly for both GET and POST endpoints.
Get Available Coins — GET /api/coins
Search Events — POST /api/events/search
Get Categories — GET /api/categories
Get Popular Tags — GET /api/tags/popular
Only Search Events is paginated.
Use these query parameters:
page — zero-based page number
size — items per page
Typical paginated responses include:
content — current page items
totalElements — total matching items
totalPages — total page count
evt_btc_100k_2026 for an event
mkt_btc_100k_yes_no for a market
asset_btc_100k_yes and asset_btc_100k_no for outcome assets
asset_usdc for the quote asset
Last updated
Was this helpful?
Was this helpful?
curl -X POST "https://outpoll.com/api/events/search?page=0&size=20" \
-H "Content-Type: application/json" \
--data '{"sb":"VOLUME_24H","sd":"DESC","l":"en","ss":"bitcoin"}'
