Get your API key 🔑

Use our test API key to get started and reach out to us to get your personal key (contact form).

Create your first read request 🔍

Dive into blockchain data with your first read request. Fetch data seamlessly with our API by trying the request below.

curl --request GET \
  --url https://api.adamik.io/api/cosmoshub/account/cosmos1g84934jpu3v5de5yqukkkhxmcvsw3u2ajxvpdl/state \
  --header 'Authorization: <YOUR-API-KEY>'

Create your first write request 🖊️

Make your mark on the blockchain. Learn to submit write requests for seamless transaction handling. Whether transferring on Ethereum or Bitcoin, delegating on Cosmos, or claiming rewards on dYdX, the Adamik API simplifies crafting your transactions.

curl --request POST \
  --url https://api.adamik.io/api/ethereum/transaction/encode \
  --header 'Authorization: <YOUR-API-KEY>' \
  --data '{
  "transaction": {
    "data": {
      "mode": "transfer",
      "sender": "0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE",
      "recipient": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045",
      "amount": "12345600000"
    }
  }
}'