# Moralis, Without the Extra Integration

Access Moralis via Uniblock's unified blockchain API. Cross-chain NFT, token, and wallet data from Moralis. One Uniblock endpoint, no separate account required.

MORALIS INCLUDED IN UNIFIED ENDPOINTS

### API Endpoints

- **GET token/balance**: Get token balances for a wallet ([Documentation](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances))
- **GET nft/collection/metadata**: Get blockchain analytics for an address ([Documentation](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata))
- **GET transaction**: Get DeFi positions for a wallet ([Documentation](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions))
- **GET token/metadata**: Get NFT collections for a wallet ([Documentation](https://docs.uniblock.dev/api-reference/token/get-token-metadata))
- **GET nft/metadata**: Get NFT metadata for a token ([Documentation](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata))
- **GET transactions**: Get transaction history for a wallet ([Documentation](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances))

## USE CASES

- WALLETS
- BLOCKCHAIN-ANALYTICS
- 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.

## MORALIS API EXAMPLE

### INPUT

```javascript
const options = {method: 'GET', headers: {accept: 'application/json'}};

fetch('https://api.uniblock.dev/uni/v1/token/balance?chainId=1&walletAddress=0x8D97689C9818892B700e27F316cc3E41e17fBeb9&provider=Moralis', options)

.then(response => response.json())

.then(response => console.log(response))

.catch(err => console.error(err));
```

### OUTPUT

```json
{
  "balances": [
    {
      "contractAddress": "0x5593aed76aa4936fbfc4823eefa703f74a21c910",
      "balance": "3000"
    },
    {
      "contractAddress": "0xade9fe2bd80fa3e70930cf5cec4d420f3a748efc",
      "balance": "70"
    },
    {
      "contractAddress": "0xb24cd494fae4c180a89975f1328eab2a7d5d8f11",
      "balance": "400000000000000000000"
    },
    {
      "contractAddress": "0x0000000000000000000000000000000000000000",
      "balance": "205085415370746"
    }
  ]
}
```

#### About Moralis

Moralis is a Web3 backend platform offering cross-chain APIs for NFT data, token balances, wallet activity, and DeFi information across Ethereum, Solana, and other major blockchains.
