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
- TypeScript
- CLI
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 } }"}'
import { JintelClient } from "@yojinhq/jintel-client";
const jintel = new JintelClient({ apiKey: process.env.JINTEL_API_KEY });
const { data } = await jintel.quotes(["AAPL"]);
console.log(data);
npm i -g @yojinhq/jintel-cli
export JINTEL_API_KEY=jk_live_...
jintel quote AAPL
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.