Quickstart

Get from zero to your first call in a couple of minutes.

1. Install the SDK

# TypeScript / Node
pnpm add @wave-av/sdk

# Python
pip install wave-sdk

2. Get an API key

Claim a key in the developer portal. The same key authenticates every WAVE product — the gateway enforces scope and metering.

3. Make a call

curl -H "Authorization: Bearer $WAVE_API_KEY" \
  https://api.wave.online/v1/clips

The same Authorization header works across every product. Your key rides through the edge spoke untouched; the gateway does the enforcement.

Next