Endpoint Playground
Test Crawlora's Metaculus question metadata API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/metaculus/question/43731/metadata" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 43731 | Metaculus question or post id |
{
"code": 200,
"msg": "OK",
"data": {
"question": {
"id": 43731,
"question_id": 43761,
"title": "OpenAI or Anthropic valuation?",
"question_type": "multiple_choice",
"public_page_derived": true
},
"group_variable": "Company",
"options": [
"OpenAI",
"Anthropic"
],
"options_history": [
{
"changed_at": "0001-01-01T00:00:00",
"options": [
"OpenAI",
"Anthropic"
]
}
],
"public_page_derived": true
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns public metadata for one Metaculus question, including option labels, option history, scaling metadata, resolution fields, and timing fields when present.
{
"code": 200,
"msg": "OK",
"data": {
"question": {
"id": 43731,
"question_id": 43761,
"title": "OpenAI or Anthropic valuation?",
"question_type": "multiple_choice",
"public_page_derived": true
},
"group_variable": "Company",
"options": [
"OpenAI",
"Anthropic"
],
"options_history": [
{
"changed_at": "0001-01-01T00:00:00",
"options": [
"OpenAI",
"Anthropic"
]
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/metaculus/question/<id>/metadata" \
-H "x-api-key: $CRAWLORA_API_KEY"