# Ankr, Connected Without Limits

Access Ankr via Uniblock’s unified blockchain API. Decentralized node infrastructure and APIs for multi-chain access, normalized through Uniblock.

ANKR INCLUDED IN UNIFIED ENDPOINTS

- **GET**  
  `eth/blocknumber`  
  Get the latest block number  
- **GET**  
  `eth/getbalance`  
  Retrieve the ETH balance of an address  
- **GET**  
  `eth/gettransactionbyhash`  
  Fetch transaction details by hash  
- **GET**  
  `eth/getlogs`  
  Query logs for smart contract events  
- **GET**  
  `eth/getblockreceipts`  
  Get all receipts in a block  
- **GET**  
  `eth/getblocktransactioncountbyhash`  
  Count transactions in a block

## USE CASES

- NFT-MARKETPLACE
- DEFI-PLATFORMS
- DAOS
- GAMING-PLATFORMS

### TURN INTEGRATIONS INTO YOUR WEB3 EDGE

Boost sales, reduce code, and eliminate headaches with Uniblock's seamless Ankr integration.

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

## ANKR 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=Ankr', options)  .then(response => response.json())  .then(response => console.log(response))  .catch(err => console.error(err));
```

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

#### About Ankr

Ankr is a decentralized Web3 infrastructure provider offering distributed node services, APIs, and developer tools across Ethereum, BNB Chain, Polygon, and other ecosystems.
