Skip to main content

step 1 — get your API key

  1. sign in to edgeful.
  2. go to the API dashboardAPI Keys.
  3. click generate API key, name it (e.g., “edgeful-api”), and copy the plaintext value. Store it securely — it is shown only once.
Never commit API keys. Use environment variables.

step 2 — make your first call

if the API Reference asks for a Bearer token, paste your API key itself.
curl -H "Authorization: Bearer $EDGEFUL_API_KEY" \
  "https://api.edgeful.com/intraday_calculation/opening-range-breakout-standard/futures/ES?start_date=2024-01-01&end_date=2024-01-31&start_time=09:30:00&end_time=16:00:00&timezone=America/New_York"
Expected response (truncated):
{ ... }

step 3 — next steps