API referenceEvents
Get an event by id
Returns one market by primary id with its resolution if present; 404 otherwise.
curl -X GET "https://example.com/v1/events/string"{ "id": "string", "source": "polymarket", "sourceMarketId": "string", "question": "string", "description": "string", "outcomes": [ { "outcomeId": "string", "name": "string" } ], "endDate": "2019-08-24T14:15:22Z", "startDate": "2019-08-24T14:15:22Z", "tagsAtAdmission": [ 0 ], "liquidityUsd": 0, "volumeUsd": 0, "volumeRecentUsd": 0, "currentLiquidityUsd": 0, "currentVolumeUsd": 0, "currentOutcomePrices": { "property1": 0, "property2": 0 }, "admittedAt": "2019-08-24T14:15:22Z", "lastSeenAt": "2019-08-24T14:15:22Z", "resolution": { "resolvedAt": "2019-08-24T14:15:22Z", "resolutionStatus": "unresolved", "winningOutcomeId": "string", "winningOutcomeName": "string", "finalOutcomePrices": { "property1": 0, "property2": 0 } }}Request a forecast for an event POST
Requests a forecast from the inference bridge, optionally with forecast parameters. Read-only and free — no credits are charged.
List events GET
Public keyset-paginated list of markets. Defaults to live (not-ended) markets ordered by endDate ASC, id ASC. The cursor is opaque; pass it back verbatim to fetch the next page.