Create an API key
Sign in to create keys, or request manual setup for teams, projects, and staff-level quotas.
Open consoleInfwave gives teams and developers one API key, one balance, and one usage ledger. Text models use Anthropic-native and OpenAI-compatible routes; video generation runs as async jobs with a public, auditable data boundary.
curl https://tryaiapi.com/v1/messages \
-H "x-api-key: $INFWAVE_KEY" \
-H "anthropic-version: 2023-06-01" \
-d '{
"model": "claude-sonnet-4-5-20250929",
"max_tokens": 1024,
"messages": [...]
}'
curl https://tryaiapi.com/v1/chat/completions \
-H "Authorization: Bearer $INFWAVE_KEY" \
-d '{
"model": "chatgpt-model-id",
"messages": [...]
}'
curl https://tryaiapi.com/v1/video/generations \
-H "Authorization: Bearer $INFWAVE_KEY" \
-d '{
"model": "doubao-seedance-2-0-260128",
"prompt": "A product video",
"duration": 5
}'
Sign in to create keys, or request manual setup for teams, projects, and staff-level quotas.
Open consoleText models use SDK base URL replacement. Video generation uses a dedicated job creation and polling flow.
https://tryaiapi.com
Text usage is token-based; video usage is job or duration-based. Export records and verify the data boundary.
View transparencyOne key manages multiple model providers and routes by model alias, reducing repeated client-side configuration.
Public schema snapshots and data boundaries show the metadata retained for billing, routing, and audit.
Usage can be grouped by model, key, and time range for team-level cost allocation and reconciliation.
Designed for small and medium B2B usage, with manual onboarding, reconciliation, and invoice workflows.