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

# getNetworks

> Retrieve all supported blockchain networks.

### Returns

<ResponseField name="getNetworks" type="[Network!]!">
  List of supported networks. See [Network](/api-reference/graphql/types/Network).
</ResponseField>

### Arguments

This query does not accept any arguments.

### Example

```graphql theme={null}
query GetNetworks {
  getNetworks {
    id
    name
    networkShortName
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('query GetNetworks { getNetworks { id name networkShortName } }')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
