prediction

Prediction Markets

Cascade Detection

Cascade Detection is a prediction markets capability available through Veritas on Aweb. Information cascade front-running via 12-min institutional lag. Access it through a single unified API with automatic failover and intelligent routing.

Try Cascade DetectionAPI docs

Best for

Highest quality

Veritas

Premium tier

Most affordable

Veritas

Economy tier

Contract

Max Latency10000ms

Providers (1)

ProviderScoreQualityPricing
VeritasDEFAULT
96premiumeconomy

Quick start

Call Cascade Detection through Aweb — automatic provider selection, failover, and load balancing included.

cURL

curl -X POST https://api.aweb.studio/v1/execute \
  -H "Authorization: Bearer $AWEB_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "capability": "prediction.cascade",
    "input": { "prompt": "Hello world" }
  }'

TypeScript

import { Aweb } from '@aweb/core';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });

// Aweb automatically selects the best provider
const result = await aweb.execute({
  capability: 'prediction.cascade',
  input: { prompt: 'Hello world' },
});

console.log(result.output);

Orchestration pipeline

import { Aweb } from '@aweb/core';

const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });

// Multi-step pipeline with automatic failover
const result = await aweb.orchestrate({
  steps: [
    { id: 'step1', capability: 'prediction.cascade', input: { prompt: 'Hello world' } },
    { id: 'step2', capability: 'llm.chat', dependsOn: ['step1'],
      input: { prompt: 'Summarize: $step1.output' } },
  ],
});

Related Prediction Markets capabilities

Prediction Markets

prediction

Trending Markets

prediction

Biggest Movers

prediction

Closing Soon

prediction

Market Detail

prediction

Markets by Category

prediction

Getting started →API reference →All providers →All capabilities →