Infura - Uniblock

Infura Node Access, Without the Setup

Access Infura via Uniblock's unified blockchain API. Reliable Ethereum and IPFS node access from Infura's infrastructure. Already routed through Uniblock.

INFURA INCLUDED IN UNIFIED ENDPOINTS

[GET

eth/blocknumber

Get airdrop campaign data](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances)

[GET

eth/getbalance

Get DAO governance data](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata)

[GET

eth/getblockreceipts

Get DeFi platform data](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions)

[GET

eth/getblocktransactioncountbyhash

Get gaming platform data](https://docs.uniblock.dev/api-reference/token/get-token-metadata)

[GET

eth/getlogs

Get the ETH balance of an address](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata)

[GET

eth/gettransactionbyhash

Get the latest block number](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances)

USE CASES

TURN INTEGRATIONS INTO YOUR WEB3 EDGE

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

INFURA API EXAMPLE

INPUT

const options = {
    method: 'POST',
    headers: {accept: 'application/json', 'content-type': 'application/json'},
    body: JSON.stringify({id: 1, method: 'eth_blockNumber'})
};

fetch('https://api.uniblock.dev/uni/v1/json-rpc?chainId=1&provider=Infura#1', options)
    .then(response => response.json())
    .then(response => console.log(response))
    .catch(err => console.error(err));

OUTPUT

{
    "id": 1,
    "jsonrpc": "2.0",
    "result": "0x13df2a6"
}

About Infura

Infura is a ConsenSys-owned infrastructure provider offering reliable Ethereum and IPFS node access via API. It's one of the most widely used RPC providers in Web3 development.