Skip to main content
GET
/
v1
/
analytics
/
net-inflow
Python (SDK)
from finance_dev import FinanceDev, models
import os


with FinanceDev(
    security=models.Security(
        client_id=os.getenv("FINANCEDEV_CLIENT_ID", ""),
        client_secret=os.getenv("FINANCEDEV_CLIENT_SECRET", ""),
    ),
) as fd_client:

    res = fd_client.analytics.get_net_inflow()

    # Handle response
    print(res)
{
  "nasdaqNetInflow": 123,
  "nyseNetInflow": 123,
  "nasdaqTradeCount": 123,
  "nyseTradeCount": 123,
  "timestamp": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/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.

Response

Net inflow data retrieved successfully

nasdaqNetInflow
number

NASDAQ net inflow value

nyseNetInflow
number

NYSE net inflow value

nasdaqTradeCount
integer<uint64>

Number of NASDAQ trades

nyseTradeCount
integer<uint64>

Number of NYSE trades

timestamp
string

Data timestamp