Endpoint Playground
Test Crawlora's Metaculus question options 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/options?method=recency_weighted" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | 43731 | Metaculus question or post id |
| method | string | No | recency_weighted | Aggregation method |
{
"code": 200,
"msg": "OK",
"data": {
"question": {
"id": 43731,
"question_id": 43761,
"title": "OpenAI or Anthropic valuation?",
"question_type": "multiple_choice",
"public_page_derived": true
},
"method": "recency_weighted",
"options_count": 2,
"options": [
{
"index": 0,
"label": "OpenAI",
"center": 0.42,
"lower": 0.31,
"upper": 0.43,
"mean": 0.39,
"forecast_value": 0.42,
"forecaster_count": 5
}
],
"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 multiple-choice option labels and latest option-level forecast values for one Metaculus question. The `method` enum accepts `recency_weighted`, `unweighted`, and `single_aggregation`.
{
"code": 200,
"msg": "OK",
"data": {
"question": {
"id": 43731,
"question_id": 43761,
"title": "OpenAI or Anthropic valuation?",
"question_type": "multiple_choice",
"public_page_derived": true
},
"method": "recency_weighted",
"options_count": 2,
"options": [
{
"index": 0,
"label": "OpenAI",
"center": 0.42,
"lower": 0.31,
"upper": 0.43,
"mean": 0.39,
"forecast_value": 0.42,
"forecaster_count": 5
}
],
"public_page_derived": true
}
}curl "https://api.crawlora.net/api/v1/metaculus/question/<id>/options" \
-H "x-api-key: $CRAWLORA_API_KEY"