Skip to main content

Data API

Financial data API

FinUties exposes official, market, and thematic datasets behind one catalogue. Query by domain, keep provenance visible, and reuse the same resource names in apps and agents. We cover seven data domains and say how recent each should be; broader catalogue entries are research backlog unless marked otherwise.

Get a free public-test key Browse catalogue MCP brief

Coverage clusters

Live path inventory: GET /api/v1/resources (domains include a coverage flag: p0 vs research).

Example request

Discover first, then query — resource names are catalogue-driven.

# 1) Catalogue
curl -sS "https://data.finuties.com/api/v1/resources"

# 2) Query options for one resource
curl -sS -H "Authorization: Bearer $FINUTIES_TOKEN" \
  "https://data.finuties.com/api/v1/resources/economics/<resource>/query-options"

# 3) Read
curl -sS -H "Authorization: Bearer $FINUTIES_TOKEN" \
  "https://data.finuties.com/api/v1/economics/<resource>?limit=10"

Illustrative JSON envelope:

{
  "data": [{ "country": "DE", "period": "2026-Q1", "value": 0.3 }],
  "meta": { "domain": "economics", "resource": "…", "count": 10 }
}

Vs stitching scrapers

One contract, three surfaces

Next