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

# Domain operations

> 12 single-domain operations: exactly the slice you want, priced per delivered asset

The 12 domain operations each return one slice of the picture. Reach for one
when your agent wants just funding, or just valuation, without paying for the
full `read`. Precision spend: fetch exactly the domain the decision needs.
Every one shares the same `id` / `ids` parameter pair: pass one `id`, or 2 to
10 `ids` as a comma-separated batch. Billing is one credit per distinct
returned asset.

Measured values arrive with context beside them. Where a field carries a
percentile it is shaped `{"value": ..., "pctl": ...}`, so a reading is
already ranked against its own history. Funding also carries a `funding_band`
label that names how stretched positioning is, in one word an agent can act
on.

### price

Spot price with return, range position, and the current quote. Covers both
crypto and equities. Headline fields include `usd`, `return_24h_pct`,
`range_pos_7d_pct`, `bid_usd` / `ask_usd`, and `market.market_cap_usd`.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/price?id=crypto:bitcoin'
```

### funding

Perpetual funding for a crypto asset: `rate_8h_pct`, `apr_pct`,
`venue_spread_8h_pct`, a per-venue breakdown in `by_venue`, and the
`funding_band` label. Crypto only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/funding?id=crypto:bitcoin'
```

### open\_interest

Open interest and how it is moving: `usd`, `change_24h_pct`, `basis_pct`, and
a `by_venue` breakdown. Crypto only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/open_interest?id=crypto:ethereum'
```

### orderflow

Taker pressure and spot premium: `net_taker_delta_24h_usd`,
`net_delta_pct_of_oi_24h`, and `coinbase_premium_rate_pct`. Crypto only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/orderflow?id=crypto:bitcoin'
```

### liquidations

Forced liquidations over the last day: `total_24h_usd`, `liq_imbalance_24h`,
and `intensity_pct_of_oi_24h`. Crypto only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/liquidations?id=crypto:bitcoin'
```

### liquidity

Order-book conditions: `spread_pct`, `bid_ask_imbalance`, and `depth`. Crypto
only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/liquidity?id=crypto:bitcoin'
```

### technicals

Indicators over a chosen timeframe: `rsi_14`, `adx_14`, `atr_14_pct`, and
related moving averages. Covers both planes. The `timeframe` parameter
accepts `15m`, `1h`, `4h`, or `1d`; the default is the plane default (4h for
crypto, 1d for equities).

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/technicals?id=crypto:bitcoin&timeframe=1h'
```

### structure

Market structure: `trend_state`, the last break of structure in `last_bos`,
and `session_levels`. Crypto only. Takes the same `timeframe` enum as
`technicals` (`15m`, `1h`, `4h`, `1d`), defaulting to 4h.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/structure?id=crypto:bitcoin&timeframe=4h'
```

### profile

Company profile for an equity: `sector`, `market_cap_usd`, and
`shares_outstanding`. Equity only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/profile?id=eq:0000320193:aapl'
```

### valuation

Valuation multiples for an equity: `pe_ttm`, `ps_ttm`, and `ev_ebitda_ttm`.
Equity only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/valuation?id=eq:0000320193:aapl'
```

### growth

Year-over-year growth for an equity: `revenue_growth_yoy_pct`,
`eps_growth_yoy_pct`, and `free_cash_flow_growth_yoy_pct`. Equity only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/growth?id=eq:0000320193:aapl'
```

### fundamentals

Trailing fundamentals for an equity: `revenue_ttm`, `eps_ttm`, and
`free_cash_flow_ttm`. Equity only.

```bash theme={null}
curl -H 'Authorization: Bearer nx_your_key' 'https://noxint.ai/api/v1/fundamentals?id=eq:0000320193:aapl'
```
