SIGNAL_BENCH DOCS

First request

Quickstart

Generate a key, store it locally, and make your first Signal Bench API request.

1. Get A Key

  1. Sign in to Signal Bench.
  2. Open Settings / API Keys.
  3. Select Generate API Key.
  4. 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"