Skip to main content
GET
/
api
/
v1
/
markets
/
{id}
Get market details
curl --request GET \
  --url https://v2.api.adj.news/api/v1/markets/{id} \
  --header 'Authorization: Bearer <token>'
{
  "market_id": "<string>",
  "platform": "<string>",
  "question": "<string>",
  "status": "<string>",
  "ticker": "<string>",
  "description": "<string>",
  "probability": 123,
  "volume": 123,
  "liquidity": 123,
  "category": "<string>",
  "end_date": "2023-11-07T05:31:56Z",
  "link": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}
Retrieve comprehensive information about a specific market by its unique identifier.

Path Parameters

id
string
required
The unique market identifier (e.g., SENATECO-26-R for Kalshi, 0x123abc... for Polymarket).

Response

{
  "market_id": "SENATECO-26-R",
  "ticker": "SENATECO-26-R",
  "platform": "kalshi",
  "question": "Will the Republican party win the Senate seat in Colorado",
  "description": "This market resolves to Yes if the Republican party candidate wins the Colorado Senate seat in the 2026 election...",
  "probability": 5.0,
  "volume": 355.07,
  "liquidity": 2351840.0,
  "status": "active",
  "end_date": "2027-11-03T15:00:00Z",
  "link": "https://kalshi.com/markets/senateco",
  "category": "senate"
}
FieldTypeDescription
market_idstringUnique identifier
tickerstringAdjacent News standardized ticker
platformstringSource platform (kalshi, polymarket)
questionstringMarket question or title
descriptionstringDetailed market description and resolution criteria
probabilitynumberCurrent probability (0-100), derived from trades
volumenumberTotal trading volume
liquiditynumberCurrent liquidity/open interest
statusstringMarket status (active, resolved, closed)
end_datedatetimeMarket end/close date
linkstringDirect link to market on source platform
categorystringMarket category (senate, presidential, etc.)

Example

curl "https://v2.api.adj.news/api/v1/markets/SENATECO-26-R" \
  -H "Authorization: Bearer YOUR_TOKEN"

Errors

StatusDescription
404Market not found

Authorizations

Authorization
string
header
required

Auth0 JWT Bearer token

Path Parameters

id
string
required

Market ID

Response

Market details

market_id
string
required
platform
string
required
question
string
required
status
string
required
ticker
string
description
string
probability
number | null
volume
number | null
liquidity
number | null
category
string | null
end_date
string<date-time> | null
created_at
string<date-time>
updated_at
string<date-time>