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

# getNetworkStatus

> Returns the status of a list of networks supported on Codex.

<div data-generated>
  ## GraphQL

  ```
  type Query {
    getNetworkStatus(
      networkIds: [Int!]!
    ): [MetadataResponse!]
  }

  type MetadataResponse {
    lastProcessedBlock: Int
    lastProcessedTimestamp: Int
    networkId: Int!
    networkName: String!
  }
  ```
</div>

### Example

<a href="/explore" target="_blank" rel="noopener noreferrer">Test this query in the Explorer →</a>

```graphql theme={null}
{
  getNetworkStatus(networkIds: [1, 56, 1399811149]) {
    networkId
    networkName
    lastProcessedBlock
    lastProcessedTimestamp
  }
}
```
