Ubiquity API Demo

Ubiquity, Blockdaemon’s indexed API, generalizes blockchain content into a common format making it easy for reading blockchain data across multiple protocols.

Get StartedLearn More

Getting Started

Click on a protocol to change the API request and real-time stream of transactions displayed in the table below.

curl --request GET
--url 'https://ubiquity.api.blockdaemon.com/v2/bitcoin/mainnet/txs'
--header 'Authorization: Bearer YOUR_TOKEN'

Connection failed

Loading...

Get Connected

The Ubiquity API can be called using tools like curl, wget, wsdump, and Postman. Just sign up, create a Blockdaemon API token, and connect via WebSocket or HTTP.

WebSockets

wsdump
--headers 'Authorization: Bearer YOUR_TOKEN'
wss://ubiquity.api.blockdaemon.com/v2/bitcoin/mainnet/websocket/

HTTP Requests

Ubiquity also offers an indexed API for easily accessing historical data from Ubiquity-supported protocols.

Get Accounts

curl --request GET
--url 'https://ubiquity.api.blockdaemon.com/v2/bitcoin/mainnet/accounts'
--header 'Authorization: Bearer YOUR_TOKEN'

Get Transactions

curl --request GET
--url 'https://ubiquity.api.blockdaemon.com/v2/bitcoin/mainnet/txs'
--header 'Authorization: Bearer YOUR_TOKEN'

In Progress

Native APIs

Ubiquity API

Access blockchain data via HTTPS or WebSockets using a single streamlined command set for Bitcoin, Ethereum, Stellar, and XRP (with more on the way).

Get StartedLearn More