Skip to main content
GET
/
live
/
{market_type}
/
wip
/
report
cURL
curl --no-buffer --request GET \
  --url 'https://api.edgeful.com/live/<market_type>/wip/report?ticker=<ticker>&report_key=<report_key>' \
  --header 'Authorization: Bearer <api-key>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://edgeful.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

market_type
enum<string>
required

type of market to stream data for; stock or futures.

Available options:
futures,
stock
Examples:

"futures"

"stock"

Query Parameters

session
string
default:NY

session to stream; only exact default sessions NY, LONDON, ASIA produce live data. other values connect but receive no ticker events.

date_range
enum<string>
default:6mo

historical lookback window attached to the report data; 3mo or 6mo.

Available options:
3mo,
6mo
ticker
string
required

ticker symbol to stream (e.g., NQ, ES, SPY).

report_key
string
required

base report key identifying which analysis to stream (e.g., gap_fill_standard, initial_balance_standard).

customization
string
default:""

variant suffix to select a specific customization (e.g., 100 for gap fill percentage, 60min for IB period). empty string selects the default variant.

Response

Successful Response