Skip to main content

Up/Down Markets

Both /markets/updown and /v1/markets/updown work — they return the identical payload. The /v1/markets/updown alias is not listed in the OpenAPI schema, but it is a live, fully-functional route, so you can keep your /v1/... base path everywhere. The companion interval-discovery endpoint GET /v1/markets/updown/intervals is a regular versioned route.
Returns active up/down interval markets — short-term binary markets that resolve based on whether an asset’s price goes up or down within a specific time window.

Query Parameters

5M and 15M are subject to availability — see GET /v1/markets/updown/intervals to discover which intervals are currently active.

Request

The un-versioned https://api.polysimulator.com/markets/updown form works identically if your existing code already uses it — same handler, same response.

Response

Market Entry Fields


Trading Up/Down Markets

Up/down markets work like any other market — use POST /v1/orders:
Up/down markets have short lifespans (5 minutes to 24 hours). After expiry, prices may show invalid values (both outcomes at 100%). The API blocks BUY orders on expired markets but allows SELL orders for emergency position exit.

Next Steps