First request
Quickstart
Generate a key, store it locally, and make your first Signal Bench API request.
1. Get A Key
- Sign in to Signal Bench.
- Open Settings / API Keys.
- Select Generate API Key.
- Copy the key immediately. The raw key is only shown once.
2. Store It Locally
export SIGNALBENCH_API_KEY="sb_replace_with_your_key"For deployed apps, use your hosting provider's secret store instead of hard-coding the key.
3. Call The API
curl https://www.signalbench.dev/api/v1/agent/manifest \
-H "x-api-key: $SIGNALBENCH_API_KEY"curl https://www.signalbench.dev/api/v1/signals \
-H "x-api-key: $SIGNALBENCH_API_KEY"