본문으로 건너뛰기

Celestia RPC

With Quicknode, you get access to our global Celestia network which always routes your API requests to the nearest available location, ensuring low latency and the fastest speeds.

Celestia

Celestia is a modular blockchain network that separates data availability and consensus from execution. This design allows developers to launch their own blockchains without needing to bootstrap a validator set or compromise on scalability.

The network consists of two main components:

  • Data Availability Layer: Celestia's core function is ensuring that transaction data is accessible and verifiable by anyone. It uses Data Availability Sampling (DAS), which allows light nodes to verify data without downloading entire blocks.

  • Consensus Layer: Built on the Cosmos SDK with a modified Tendermint consensus mechanism, Celestia orders and publishes transactions while leaving execution to rollups and other chains built on top.

Celestia uses TIA as its native token for paying data availability fees, staking, and governance. The network operates on a Proof-of-Stake consensus mechanism.

Interacting with Celestia APIs

Celestia provides a JSON-RPC API through its celestia-node client. This API allows direct interaction with Celestia's Data Availability layer for operations like submitting blobs, querying headers, and managing shares.

Celestia also exposes Cosmos REST APIs and Tendermint RPC methods for querying blockchain state and consensus information. The modular design means that execution happens on rollups and other chains that use Celestia for data availability, while Celestia itself focuses on consensus and data availability functions.

The Quicknode Celestia documentation is continuously evolving as the chain undergoes upgrades and changes, so we highly recommend cross-referencing with the official Celestia documentation for the latest updates and API details.

Make Celestia API Calls

The quickest way to start building with Celestia is to create a Quicknode endpoint and send your first JSON-RPC request.

Quicknode provides managed Celestia endpoints, giving you immediate access to Celestia Mainnet and Testnet without the overhead of running infrastructure. These endpoints offer:

  • High reliability – globally distributed infrastructure designed to minimize downtime
  • Enhanced performance – optimized latency and request handling for production applications
  • Integrated ecosystem – additional functionality through Quicknode add-ons and products like Streams

QuickStart 페이지를 방문하여 endpoint 생성하고 첫 번째 요청을 보내보세요.

지원되는 네트워크

Quicknode provides access to the following Celestia networks:

Mainnet
유형:제작
체인 ID:
celestia
HTTP:
WSS:
아카이브:
가지치기:없음
Mocha
유형:Testnet
체인 ID:
mocha-4
HTTP:
WSS:
아카이브:없음
Pruning:pruning-keep-recent = "1832727"
아카이브 데이터 이용 가능 여부

과거 데이터를 조회하려면 다음을 사용하십시오. cosmos 높이 REST API 요청 시 헤더를 사용하거나, Tendermint API 요청 시 height 매개변수를 지정하십시오:

Cosmos API 예시:

curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/cosmos/bank/v1beta1/balances/celestia1cwhxmw9kaz72nhdsuqvk6ljf9dzes8kg7ysg9d' \
--header 'x-cosmos-block-height: 1000000'

Tendermint API 예시:

curl --location 'https://docs-demo.celestia-mainnet.quiknode.pro/block?height=1000000'