Skip to main content
GET
/
debates
List debates
curl --request GET \
  --url https://api.trythinkbase.com/v1/debates \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "Should the United States ban TikTok over national security concerns?",
      "slug": "should-the-us-ban-tiktok",
      "status": "open",
      "total_predictions": 142,
      "options": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "text": "Yes",
          "vote_percentage": 62.5,
          "predictor_count": 89,
          "display_order": 0,
          "emoji": "✅"
        }
      ],
      "starts_at": "2023-11-07T05:31:56Z",
      "ends_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "category": "Politics",
      "category_slug": "politics"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 50,
    "total": 1648,
    "has_more": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.trythinkbase.com/llms.txt

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

Authorizations

X-API-Key
string
header
default:your-api-key-here
required

Your Thinkbase API key. Get one at https://trythinkbase.com/partners.

Query Parameters

page
integer
default:1

Page number.

Required range: x >= 1
limit
integer
default:50

Results per page. Maximum depends on your tier (free=100, tier_1=250, tier_2=500, tier_3=1000, tier_4=1000).

category
string

Filter by category slug (e.g., politics, ethics, technology).

status
enum<string>

Filter by debate status.

Available options:
open,
closing_soon,
closed,
resolved
sort
enum<string>
default:recent

Sort order.

Available options:
recent,
popular,
ending_soon

Response

Paginated list of debates.

data
object[]
pagination
object