BLOCKCHAIN
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 ENDPOINTS
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.