Skip to main content
GET
/
debates
/
{slug}
/
arguments
List arguments for a debate
curl --request GET \
  --url https://api.trythinkbase.com/v1/debates/{slug}/arguments \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "position": "Yes",
      "body": "The real question isn't whether to ban it — it's whether a forced divestiture achieves the same security goals without the free speech implications.",
      "upvote_count": 89,
      "created_at": "2023-11-07T05:31:56Z",
      "position_emoji": "✅"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 50,
    "total": 1648,
    "has_more": true
  }
}

Authorizations

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

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

Path Parameters

slug
string
required

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).

option_id
string<uuid>

Filter to arguments for a specific answer option.

sort
enum<string>
default:top

Sort by upvotes (top) or creation time (recent).

Available options:
top,
recent

Response

Paginated list of arguments.

data
object[]
pagination
object