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

# Spot Assets

Spot market metadata. Returns the `spotMeta` response from HyperLiquid.

## Example

```bash theme={null}
curl https://hyper.polynode.dev/exchange/spot-assets
```

```json theme={null}
{
  "universe": [
    {"tokens": [1, 0], "name": "PURR/USDC", "index": 0, "isCanonical": true},
    {"tokens": [3, 0], "name": "HFUN/USDC", "index": 1, "isCanonical": true}
  ]
}
```


## OpenAPI

````yaml GET /exchange/spot-assets
openapi: 3.1.0
info:
  title: hypernode API
  description: >-
    Real-time HyperLiquid L1 streaming and REST API for market data, trading,
    and account management.
  contact:
    name: hypernode
    url: https://hyper.polynode.dev
  version: 1.0.0
servers:
  - url: https://hyper.polynode.dev
    description: Production
security: []
paths:
  /exchange/spot-assets:
    get:
      tags:
        - Discovery
      summary: Spot market metadata
      operationId: get_spot_assets
      parameters:
        - name: network
          in: query
          required: false
          schema:
            type: string
            default: mainnet
      responses:
        '200':
          description: Spot meta with universe array

````