Skip to main content
GET
/
api
/
v1
/
markets
List markets
curl --request GET \
  --url https://api.probalytics.io/api/v1/markets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "platform_id": "<string>",
      "slug": "<string>",
      "url": "<string>",
      "title": "<string>",
      "description": "<string>",
      "category": "<string>",
      "tags": [
        "<string>"
      ],
      "outcomes": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "platform_id": "<string>",
          "name": "<string>",
          "index": 123
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "opened_at": "2023-11-07T05:31:56Z",
      "closes_at": "2023-11-07T05:31:56Z",
      "resolves_at": "2023-11-07T05:31:56Z",
      "end_date": "2023-11-07T05:31:56Z",
      "reset_at": "2023-11-07T05:31:56Z",
      "resolution": {
        "winning_outcome_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "outcome_payouts": [
          {
            "outcome_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "payout": "<string>"
          }
        ],
        "resolved_by": "<string>",
        "resolved_at": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.probalytics.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key in the format credential_id:credential_secret.

Example: Authorization: Bearer api_brave_cosmic_falcon:sk_life_AbCdEfGh...

Query Parameters

platform
enum<string>

Filter by prediction market platform.

Available options:
KALSHI,
POLYMARKET
status
enum<string>

Filter by market status.

Available options:
ACTIVE,
PAUSED,
CLOSED,
RESOLVED
start_time
string<date-time>

Include markets created at or after this time (RFC 3339).

end_time
string<date-time>

Include markets created at or before this time (RFC 3339).

limit
integer
default:100

Maximum number of results to return.

Required range: 1 <= x <= 1000
cursor
string

Pagination cursor returned from a previous request.

Response

A paginated list of markets.

data
object[]
next_cursor
string

Cursor for the next page. Absent when there are no more results.