Skip to main content

Quickstart

Get a first response in under a minute.

1. Create an account

Sign in and generate an API key from the dashboard. The raw key is returned once and hashed at rest — store it in a secrets manager.

2. Make your first request

Fetch Apple's latest quote. Paste your key and run it right here:

{
quotes(tickers: ["AAPL"]) {
ticker
price
changePercent
}
}

Or use your preferred client:

curl https://api.jintel.ai/api/graphql \
-H "Authorization: Bearer $JINTEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"{ quotes(tickers:[\"AAPL\"]) { ticker price changePercent } }"}'

Response

{
"data": {
"quotes": [
{ "ticker": "AAPL", "price": 189.42, "changePercent": 1.23 }
]
}
}

3. Explore more endpoints

Use entitiesByTickers for batch enrichment, sanctionsScreen for KYC, priceHistory for backtests, and institutionalHoldings for 13F research. See Data for reference.