# Mempool, Transaction Data Simplified

Access Mempool via Uniblock’s unified blockchain API. Retrieve normalized transaction details, block data, and wallet activity across chains.

MEMPOOL INCLUDED IN UNIFIED ENDPOINTS

- **GET transactions**  
  Get the transactions of an address  
  [API Documentation](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances)

- **GET transaction**  
  Get a specific transaction from its hash  
  [API Documentation](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata)

- **GET transactions/block**  
  Get all transactions in a block  
  [API Documentation](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions)

- **GET transactions/advanced**  
  Get advanced transactions of an address, including sends, receives, token and NFT transfers  
  [API Documentation](https://docs.uniblock.dev/api-reference/token/get-token-metadata)

- **GET token/transfers**  
  Get the token transfers of an address  
  [API Documentation](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata)

- **GET market-data/24-hour-volume**  
  Fetch a token’s 24-hour trading volume  
  [API Documentation](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances)

## USE CASES

- DEFI-PLATFORMS
- WALLETS
- PORTFOLIO-DASHBOARDS
- TRADING-ANALYTICS

Boost sales, reduce code, and eliminate headaches with Uniblock's seamless Mempool 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.

## MEMPOOL API EXAMPLE

**INPUT**

```javascript
const options = {method: 'GET', headers: {accept: 'application/json'}}; fetch('https://api.uniblock.dev/uni/v1/transactions?chainId=1&walletAddress=0x123...', options) .then(r=>r.json()).then(console.log).catch(console.error);
```

**OUTPUT**

```json
{"transactions":[{"hash":"0xabc...","from":"0x123...","to":"0x456...","value":"1000000000000000000"}]}
```

#### About Mempool

Mempool provides blockchain transaction data APIs, enabling developers to access real-time and historical transaction details, block activity, and wallet analytics across multiple chains.
