> ## Documentation Index
> Fetch the complete documentation index at: https://docs.quantoraresearch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Macro, company and market data with provenance on every row.

Quantora API delivers normalised economic and financial data from 75 official sources:
**268 countries**, **1,900 US companies**, and FX, rates, commodities and positioning,
with history back to 1871.

Every row carries where it came from and whether it can be trusted.

## Three ways in

<CardGroup cols={3}>
  <Card title="REST API" icon="code" href="/api-reference/observations-latest">
    One endpoint shape for every dataset. JSON over HTTPS, cursor pagination,
    versionless URLs.
  </Card>

  <Card title="MCP server" icon="robot">
    Connect an AI assistant directly to the data. Ask in plain language, get real
    figures with sources.
  </Card>

  <Card title="Bulk sync" icon="database" href="/api-reference/manifest">
    Whole entities or the whole dataset, for loading into your own store.
  </Card>
</CardGroup>

## Understanding the data

<CardGroup cols={2}>
  <Card title="Data model" icon="box" href="/concepts/observations">
    One object shape for everything. Turkish inflation and Apple's revenue arrive in
    the same envelope.
  </Card>

  <Card title="Data availability" icon="chart-simple" href="/data/coverage">
    What exists, per country and per dataset. Coverage is uneven and stated plainly.
  </Card>

  <Card title="Trust metadata" icon="shield-check" href="/concepts/trust-metadata">
    Whether a row is fresh, official, and safe to model on.
  </Card>

  <Card title="Units" icon="ruler" href="/concepts/units-and-periods">
    Rates, indices, balances and levels. The field you cannot skip.
  </Card>
</CardGroup>

## Datasets

<CardGroup cols={2}>
  <Card title="Macro indicators" icon="landmark" href="/data/macro">
    Inflation, growth, labour, rates, consumption, trade. 268 countries.
  </Card>

  <Card title="Company fundamentals" icon="building" href="/data/companies">
    Statements, multiples, filings and insider activity for 1,900 US companies.
  </Card>

  <Card title="FX" icon="arrow-right-arrow-left" href="/data/fx">
    ECB reference rates plus returns, realised volatility and trend.
  </Card>

  <Card title="Positioning" icon="scale-unbalanced" href="/data/positioning">
    CFTC futures positioning and percentile rankings.
  </Card>

  <Card title="Markets" icon="chart-line" href="/data/markets">
    Commodities, credit spreads and rates volatility.
  </Card>

  <Card title="Derived analytics" icon="function" href="/data/derived-analytics">
    Real rates, curve spreads and surprise indices we compute ourselves.
  </Card>
</CardGroup>

## First request

```bash theme={"dark"}
curl -H "x-api-key: $QUANTORA_API_KEY" \
  "https://api.financialdatapi.com/observations/latest?country=TUR"
```

Returns every indicator currently held for Turkey, one row each.

<Note>
  Every path is versionless. There is no `/v1` in any documented URL, and none is
  required.
</Note>
