Prediction Markets
Metaculus
economyMetaculus is an cost-effective prediction markets provider offering Prediction Markets, Market Detail, Community Predictions through Aweb's unified API. It features none streaming support with standard-tier latency.
Specifications
Capabilities (3)
Quick start
Use Metaculus through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "metaculus",
"capability": "prediction.markets",
"input": { "prompt": "Hello from Metaculus!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'metaculus',
capability: 'prediction.markets',
input: { prompt: 'Hello from Metaculus!' },
});
console.log(result.output);