Blockdaemon Documentation
Native RPC Access API
About Ubiquity Native RPC Access API
Endpoint Structure
Supported Protocols & Docs
About Ubiquity Native RPC Access API
With Ubiquity Native RPC Access API, you can easily interact with multiple major protocols through their own native APIs
Ubiquity Universal API provides a single, universal API. The Native Access API allows you to go deeper into a specific blockchain.
Endpoint Structure
The URL structure for Ubiquity Native API endpoints is as follows:
https://ubiquity.api.blockdaemon.com/{protocol}/{network}
Learn how to authorize your request: Authentication Guide
Example
To retrieve the current block number in Ethereum Mainnet, use the following POST request:
https://ubiquity.api.blockdaemon.com/ethereum/mainnet
In the body of the request, specify:
{"jsonrpc": "2.0", "method": "eth_blockNumber", "params": [], "id": 83}
You will get the block number in hexadecimal format: 0xd849f4
.