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

# Get Asset

> Get detailed data for one asset

Returns detailed liquidity breakdown for a single asset including issuer and network splits.

```bash theme={null}
curl "https://rwapulse.xyz/api/v0/liquidity/asset/TSLA" \
  -H "Authorization: Bearer rwa_your_key"
```

## Path Parameters

| Name     | Required | Description                         |
| -------- | -------- | ----------------------------------- |
| `symbol` | Yes      | Asset symbol (e.g., `TSLA`, `Gold`) |

## Response

```json theme={null}
{
  "symbol": "TSLA",
  "assetType": "stock",
  "totalTvl": 150000,
  "totalVolume": 12000,
  "history": {
    "7d": { "tvl": 140000, "tvlChange": 7.14 },
    "30d": { "tvl": 130000, "tvlChange": 15.38 }
  },
  "issuers": [
    {
      "name": "xStocks",
      "tokenSymbol": "TSLAx",
      "totalTvl": 100000,
      "totalVolume": 8000,
      "networks": [
        {
          "network": "solana",
          "tvl": 100000,
          "pools": [...]
        }
      ]
    }
  ],
  "marketData": {
    "onChainMarketCap": 5000000,
    "tradfiAssetPrice": 250.50
  }
}
```

## Common Mistake

Symbol must match exactly. Use `TSLA` not `tsla` or `Tesla`.
