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

# Networks

> Blockchain network data endpoints

Get data about the blockchain networks on which RWA tokens are deployed.

## GET /v4/networks

Returns a list of supported blockchain networks with filtering, sorting, and pagination.

**Default sort:** `name` ascending | **Default page size:** 25

### Fields

| Field                                    | Type   | Filterable | Description                            |
| ---------------------------------------- | ------ | :--------: | -------------------------------------- |
| `id`                                     | string |     Yes    | Unique network identifier              |
| `name`                                   | string |     Yes    | Network name (searchable)              |
| `slug`                                   | string |     Yes    | URL-friendly identifier (searchable)   |
| `parent_network_id`                      | number |     Yes    | Parent network ID (for L2s)            |
| `token_count`                            | number |     Yes    | Number of tokens on this network       |
| `asset_count`                            | number |     No     | Number of assets on this network       |
| `bridged_token_market_cap_dollar`        | number |     No     | Market cap of bridged tokens           |
| `bridged_token_value_dollar`             | number |     No     | Value of bridged tokens                |
| `holding_addresses_count`                | number |     No     | Number of holding addresses            |
| `trailing_30_day_transfer_volume`        | number |     No     | Transfer volume over trailing 30 days  |
| `trailing_30_day_active_addresses_count` | number |     No     | Active addresses over trailing 30 days |
| `daily_mints_dollar`                     | number |     No     | Daily mint volume (USD)                |
| `daily_mints_token`                      | number |     No     | Daily mint volume (tokens)             |

### Example Request

```bash theme={null}
curl -G 'https://api.rwa.xyz/v4/networks' \
  -H "Authorization: Bearer $RWA_API_KEY" \
  --data-urlencode 'query={
    "sort": { "field": "token_count", "direction": "desc" },
    "pagination": { "page": 1, "perPage": 10 }
  }'
```

### Example Response

```json theme={null}
{
  "results": [
    {
      "id": 1,
      "name": "Ethereum",
      "slug": "ethereum",
      "parent_network_id": null,
      "token_count": 245,
      "asset_count": 180,
      "bridged_token_market_cap_dollar": { "val": 1350000000, "val_7d": 1320000000, "chg_7d_pct": 2.27 },
      "bridged_token_value_dollar": { "val": 1250000000, "val_7d": 1200000000, "chg_7d_pct": 4.17 },
      "holding_addresses_count": { "val": 52341, "val_7d": 51200, "chg_7d_pct": 2.23 },
      "trailing_30_day_transfer_volume": { "val": 8500000000, "val_7d": 8200000000 },
      "trailing_30_day_active_addresses_count": { "val": 12450, "val_7d": 12100 },
      "daily_mints_dollar": { "val": 45000000, "val_7d": 42000000 },
      "daily_mints_token": { "val": 45200000, "val_7d": 42100000 }
    }
  ],
  "pagination": { "page": 1, "perPage": 10, "pageCount": 4, "resultCount": 35 }
}
```

Numeric metrics are returned as objects with the current value (`val`), historical snapshots, and percentage changes. See [Responses](/api/responses#metric-objects) for the full format.

## GET /v4/networks/meta

Returns [metadata](/api/meta) about available fields, filter operators, and select options for the networks endpoint.

### Example Request

```bash theme={null}
curl -X GET "https://api.rwa.xyz/v4/networks/meta" \
  -H "Authorization: Bearer $RWA_API_KEY"
```
