Prediction Markets
Veritas
economyVeritas is an cost-effective prediction markets provider offering True Probability, Mispricing Detection, Arbitrage Detection and 5 more through Aweb's unified API. It features partial streaming support with premium-tier latency.
Specifications
Capabilities (8)
Quick start
Use Veritas 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": "veritas",
"capability": "prediction.probability",
"input": { "prompt": "Hello from Veritas!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'veritas',
capability: 'prediction.probability',
input: { prompt: 'Hello from Veritas!' },
});
console.log(result.output);