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

# Lisk Onchain Data API

> Get token balances and transactions for Lisk. Testnet supported.

## Overview

GoldRush offers the most comprehensive Lisk Data API suite for developers, analysts, and enterprises. Whether you're
building a DeFi dashboard, a wallet, a trading bot, an AI agent or a compliance platform,
our Lisk Data APIs provide fast, accurate, and developer-friendly access to the essential onchain data you need.

### Supported APIs

<Columns cols={2} />

## Mainnet

<Card>
  <div style={{width: '100%', margin: '-16px', padding: '0'}}>
    <table style={{width: '100%', margin: '0', borderCollapse: 'collapse'}}>
      <thead style={{width: '100%'}}>
        <tr>
          <th style={{textAlign: 'left', padding: '12px 16px'}}><strong>Property</strong></th>
          <th style={{textAlign: 'left', padding: '12px 16px', width: '500px'}}><strong>Value</strong></th>
        </tr>
      </thead>

      <tbody>
        <tr>
          <td style={{padding: '12px 16px'}}><strong>Chain Name</strong></td>
          <td style={{padding: '12px 16px'}}><code>lisk-mainnet</code></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Chain ID</strong></td>
          <td style={{padding: '12px 16px'}}><code>1135</code></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Network Type</strong></td>
          <td style={{padding: '12px 16px'}}>Archived Chain</td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Support Level</strong></td>
          <td style={{padding: '12px 16px'}}>archived</td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Block Explorer</strong></td>
          <td style={{padding: '12px 16px'}}><a href="https://blockscout.lisk.com/">Explorer</a></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Official Website</strong></td>
          <td style={{padding: '12px 16px'}}><a href="https://lisk.com/">Lisk Website</a></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Native Gas Token</strong></td>
          <td style={{padding: '12px 16px'}}>ETH</td>
        </tr>
      </tbody>
    </table>
  </div>
</Card>

## Testnet

<Card>
  <div style={{width: '100%', margin: '-16px', padding: '0'}}>
    <table style={{width: '100%', margin: '0', borderCollapse: 'collapse'}}>
      <thead style={{width: '100%'}}>
        <tr>
          <th style={{textAlign: 'left', padding: '12px 16px'}}><strong>Property</strong></th>
          <th style={{textAlign: 'left', padding: '12px 16px', width: '500px'}}><strong>Value</strong></th>
        </tr>
      </thead>

      <tbody>
        <tr>
          <td style={{padding: '12px 16px'}}><strong>Chain Name</strong></td>
          <td style={{padding: '12px 16px'}}><code>lisk-sepolia-testnet</code></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Chain ID</strong></td>
          <td style={{padding: '12px 16px'}}><code>4202</code></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Purpose</strong></td>
          <td style={{padding: '12px 16px'}}>Development and testing network</td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Support Level</strong></td>
          <td style={{padding: '12px 16px'}}>archived</td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Block Explorer</strong></td>
          <td style={{padding: '12px 16px'}}><a href="https://sepolia-blockscout.lisk.com/">Explorer</a></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Official Website</strong></td>
          <td style={{padding: '12px 16px'}}><a href="https://documentation.lisk.com/">Lisk Sepolia Testnet Website</a></td>
        </tr>

        <tr>
          <td style={{padding: '12px 16px'}}><strong>Native Gas Token</strong></td>
          <td style={{padding: '12px 16px'}}>ETH</td>
        </tr>
      </tbody>
    </table>
  </div>
</Card>

## API Usage

To use this blockchain network in GoldRush API calls, use:

#### Chain Name

* `lisk-mainnet` (mainnet)
* `lisk-sepolia-testnet` (testnet)

#### Example API Calls

<CodeGroup>
  ```bash Chain Name (Mainnet) theme={null}
  curl -X GET "https://api.covalenthq.com/v1/lisk-mainnet/address/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/balances_v2/?key=<GOLDRUSH_API_KEY>"
  ```

  ```bash Chain Name (Lisk Sepolia Testnet) theme={null}
  curl -X GET "https://api.covalenthq.com/v1/lisk-sepolia-testnet/address/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/balances_v2/?key=<GOLDRUSH_API_KEY>"
  ```

  ```bash theme={null}
  ```
</CodeGroup>

#### SDK Usage

<CodeGroup>
  ```typescript TypeScript SDK (Mainnet) theme={null}
  import { GoldRushClient } from "@covalenthq/client-sdk";

  const client = new GoldRushClient("<GOLDRUSH_API_KEY>");
  const resp = await client.BalanceService.getTokenBalancesForWalletAddress({
      chainName: "lisk-mainnet",
      walletAddress: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  });
  ```

  ```typescript TypeScript SDK (Lisk Sepolia Testnet) theme={null}
  import { GoldRushClient } from "@covalenthq/client-sdk";

  const client = new GoldRushClient("<GOLDRUSH_API_KEY>");
  const resp = await client.BalanceService.getTokenBalancesForWalletAddress({
      chainName: "lisk-sepolia-testnet",
      walletAddress: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
  });
  ```
</CodeGroup>

## Additional Resources

* [GoldRush API Documentation](https://goldrush.dev/docs/)
* [Supported Chains List](https://goldrush.dev/chains/)
* [API Reference](https://goldrush.dev/docs/api-reference/)
