# Pokt, Decentralized RPC Access

Access Pokt via Uniblock’s unified blockchain API. Decentralized RPC endpoints for Ethereum, Polygon, Solana, and more.

POKT INCLUDED IN UNIFIED ENDPOINTS

- [GET token/metadata](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances)  
  Get the metadata of an ERC20 Token.
- [GET token/balance](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata)  
  Get the token balances of an address.
- [GET market-data/trending](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions)  
  List trending tokens based on gainers, losers, or volume.
- [GET nft/collection/top-collectors/collection-id](https://docs.uniblock.dev/api-reference/token/get-token-metadata)  
  Get the top collectors of a collection.
- [GET nft/metadata/nft-ids](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata)  
  Get the metadata of multiple NFTs by nft-ids.
- [GET transactions/advanced](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances)  
  Get advanced transactions of an address, including sends, receives, token and NFT transfers.

USE CASES

- WALLETS
- DAOS
- DEFI-PLATFORMS
- GAMING-PLATFORMS

### Focus on your core product

Stop diverting your engineers to yet another integration and let them get back to work.

### Give customer success a break

Manage your simplified integration issues in a single pane. No therapist required.

### Stop Losing Sales to Integration Delays

Launch Web3 integrations in days, not quarters. Your sales team will thank you.

POKT API EXAMPLE

**INPUT**

```javascript
const options = {method: 'POST', headers: {accept: 'application/json','content-type': 'application/json'}, body: JSON.stringify({id: 1, jsonrpc: '2.0', method: 'eth_getBalance', params: ['0x1234567890123456789012345678901234567890','latest']})}; fetch('https://api.uniblock.dev/uni/v1/json-rpc?provider=Pokt', options) .then(r=>r.json()).then(console.log).catch(console.error);
```

**OUTPUT**

```json
{"id":1,"jsonrpc":"2.0","result":"0x1d969c0f9cb035a0"}
```

#### About Pokt

Pokt is a decentralized Web3 infrastructure provider offering distributed RPC services across Ethereum, Polygon, Solana, and other ecosystems.
