NORSE/Data Explorer
NORSE · API Portal
Data explorer
Construct queries, see live responses, copy code snippets in Python, TypeScript, or cURL. Like Stripe's interactive docs.
Endpoints
Request
GET /v1/norse/entitiesticker
limit
Headers
X-API-Key: nf_demo_•••••••••Response
{
"data": [
{
"ticker": "EQNR",
"name": "Equinor ASA",
"sector": "Energy",
"exchange": "OSE",
"marketCapM": 95000,
"lastPrice": 318.5
},
{
"ticker": "DNB",
"name": "DNB Bank ASA",
"sector": "Financials",
"exchange": "OSE",
"marketCapM": 32000,
"lastPrice": 224.1
}
],
"meta": {
"count": 2,
"page": 1,
"limit": 20
}
}Code snippets
TypeScript
const res = await fetch('https://api.northflow.no/v1/norse/entities?ticker=EQNR', {
headers: { 'X-API-Key': process.env.NF_KEY! },
});
const data = await res.json();Python
import requests
res = requests.get(
'https://api.northflow.no/v1/norse/entities',
params={'ticker':'EQNR'},
headers={'X-API-Key': NF_KEY},
)
print(res.json())cURL
curl 'https://api.northflow.no/v1/norse/entities?ticker=EQNR' \ -H 'X-API-Key: $NF_KEY'