Skip to main content
GET
/
polymarket
/
market-price
/
{token_id}
Get Market Price
curl --request GET \
  --url https://api.domeapi.io/v1/polymarket/market-price/{token_id}
{
"price": 0.999,
"at_time": 1762164600
}

Path Parameters

token_id
string
required

The token ID for the Polymarket market

Example:

"19701256321759583954581192053894521654935987478209343000964756587964612528044"

Query Parameters

at_time
integer

Optional Unix timestamp (in seconds) to fetch a historical market price. If not provided, returns the most real-time price available.

Example:

1762164600

Response

Market price response

price
number
required

The market price (between 0 and 1)

Example:

0.999

at_time
integer
required

The timestamp for which the price was fetched (Unix timestamp in seconds)

Example:

1762164600