> ## 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.

# getNetworkConfigs

> Get detailed network configuration (EVM, Solana, etc.): explorer, base token, default pair, stable coins.

### Returns

<ResponseField name="getNetworkConfigs" type="[NetworkConfig!]!">
  List of network configuration objects (union of per-network types). See [NetworkConfig](/api-reference/graphql/types/NetworkConfig).
</ResponseField>

### Arguments

<ResponseField name="networkIds" type="[Int!]">
  Optional list of network IDs to filter (e.g. \[1]). Omit to return all supported networks.
</ResponseField>

### Example

```graphql theme={null}
query GetNetworkConfigs {
  getNetworkConfigs(networkIds: [1, 42161, 1399811149]) {
    ... on EvmNetworkConfig {
      networkId
      name
      explorer {
        name
        url
      }
    }
    ... on SolanaNetworkConfig {
      networkId
      name
      explorer {
        name
        url
      }
    }
  }
}
```

### Playground

<iframe src={`https://graphql.mobula.io/graphql?query=${encodeURIComponent('query GetNetworkConfigs($networkIds: [Int!]) { getNetworkConfigs(networkIds: $networkIds) { ... on EvmNetworkConfig { networkId name explorer { name url } } ... on SolanaNetworkConfig { networkId name explorer { name url } } } }')}&variables=${encodeURIComponent('{"networkIds": [1]}')}`} title="GraphQL Playground" style={{ width: '100%', minHeight: '600px', border: '1px solid var(--color-border)', borderRadius: '8px' }} />
