Ir diretamente para o conteúdo principal

Cosmos QuickStart

Atualizado em
Aug 07, 2026

The quickest way to start building on Cosmos with Quicknode is by sending a JSON-RPC or REST/gRPC request to your endpoint. In this quickstart, you’ll create an endpoint, copy its provider URL, and make your first request. Code samples are available in cURL as well as popular SDKs and programming languages.

Get Your Cosmos Endpoint

1

Criar uma Quicknode

Inscreve-te aqui, se ainda não o fizeste.

2

Aceda ao seu painel de controlo

Open the Endpoints dashboard from the left sidebar menu to manage all your blockchain endpoints

3

Criar um novo endpoint

Click Create an Endpoint in the top-right corner, select Cosmos as your blockchain, then select your preferred network

4

Copie os URLs do seu fornecedor

Tenha a URL HTTP à mão. Vai precisar dela nas solicitações que se seguem.

Saiba mais sobre o painel de controlo

Para um guia detalhado do Quicknode do Quicknode , consulte o nosso guia

Envie o seu primeiro pedido

Your endpoint is ready. Now, let's make your first call to the Cosmos blockchain. We’ll use the block_by_hash method, which returns details of a specificed block when given a hash parameter. Select your preferred language or tool and follow the steps to send your request.


1

Verificar a instalação do cURL

Most *nix based systems have cURL support out of the box. Open your terminal and check the cURL version by running the command below:

curl --versão
2

Query block by hash

Retrieve block information by hash from your Quicknode endpoint:

curl --location '<YOUR_QUICKNODE_ENDPOINT_URL>/block_by_hash?hash=0x645507DC48B4EF4BFF51826A0A5B73FD8CF926036AA4F6697D748FFC0B56D134'
3

Sample response

{
"jsonrpc": "2.0",
"id": -1,
"result": {
"block_id": { ... }
},
"block": {
"header": {
"version": {
"block": "11"
},
"chain_id": "cosmoshub-4",
"height": "20431644",
"time": "2024-05-15T01:23:57.786705041Z",
"last_block_id": { ... },
},
"data": {
"txs": [ ... ]
},
"evidence": {
"evidence": []
},
"last_commit": { ... }
}
}
}

If you want to continue learning about making API requests, check out our guides and sample apps.