---
title: "Get Networks"
api: "GET /api/v1/utils/networks"
description: "List all supported blockchain networks for offramping."
---

### Response

<ResponseField name="Array" type="object[]">
  <Expandable title="properties">
    <ResponseField name="name" type="string">
      The name of the network (e.g., 'Base', 'Solana').
    </ResponseField>
    <ResponseField name="description" type="string">
      A brief description of the network.
    </ResponseField>
    <ResponseField name="icon" type="string">
      URL to the network's logo.
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
```bash
curl --request GET \
     --url https://your-api-domain.com/api/v1/utils/networks \
     --header 'x-api-key: <api-key>'
```
</RequestExample>
