# Thirdweb, Web3 Development Simplified

Access Thirdweb via Uniblock’s unified blockchain API. Deploy contracts, mint NFTs, and manage tokens seamlessly.

THIRDWEB INCLUDED IN UNIFIED ENDPOINTS

### API Endpoints

- [GET token/metadata  
  Get the metadata of an ERC20 Token.](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances)
- [GET token/balance  
  Get the token balances of an address.](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata)
- [GET nft/collection-metadata  
  Get the metadata of an NFT collection.](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions)
- [GET nft/metadata  
  Get the metadata of a specific NFT.](https://docs.uniblock.dev/api-reference/token/get-token-metadata)
- [GET transactions  
  Get the transactions of an address.](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata)
- [GET market-data/price  
  Get real-time token prices.](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances)

## USE CASES

- NFT-MARKETPLACE
- SMART-CONTRACTS
- DEFI-PLATFORMS
- GAMING-PLATFORMS

### TURN INTEGRATIONS INTO YOUR WEB3 EDGE

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

## THIRDWEB 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:['0x123...','latest']})};
fetch('https://api.uniblock.dev/uni/v1/json-rpc?provider=Thirdweb', options)  
    .then(r=>r.json()).then(console.log).catch(console.error);
```

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

#### About Thirdweb

Thirdweb is a Web3 development platform offering APIs and SDKs for smart contract deployment, NFT minting, and token management across multiple chains.
