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

# Markets

> GET /v1/markets

## GET /v1/markets

Lists the tradable markets and their current mid prices.

```json theme={null}
{ "markets": [
    { "market": "ETH", "name": "Ethereum", "price": "3421.50" }
] }
```

* `market` is the identifier used everywhere else in the API.
* `price` is the current mid.

The default market set is `BTC`, `ETH`, `SOL`, `AAPL`, `NVDA`, `META`, `TSLA`, and `SPCX`. The equity and pre-IPO symbols are friendly aliases for the corresponding trade.xyz HIP-3 markets; clients never send venue-prefixed identifiers.

## Order limits

App-wide order limits (minimum \$10 notional, and a per-order maximum) are documented constants rather than API fields. Violations surface as `rejected.min_usd` / `rejected.max_usd` errors.
