> ## Documentation Index
> Fetch the complete documentation index at: https://whitelabelled-staking-docs.adamik.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick start

## Get your API key 🔑

Use our test API key to get started and reach out to us to get your personal key ([contact form](https://dashboard.adamik.io)).

## 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.

<CodeGroup>
  ```cURL Get Available Balance theme={null}
  curl --request GET \
    --url https://api.adamik.io/api/cosmoshub/account/cosmos1g84934jpu3v5de5yqukkkhxmcvsw3u2ajxvpdl/state \
    --header 'Authorization: <YOUR-API-KEY>'
  ```

  ```cURL Get List of Validators theme={null}
  curl --request GET \
    --url https://api.adamik.io/api/osmosis/validators \
    --header 'Authorization: <YOUR-API-KEY>'
  ```

  ```cURL Get Claimable Rewards theme={null}
  curl --request GET \
    --url 'https://api.adamik.io/api/cosmoshub/account/cosmos1g84934jpu3v5de5yqukkkhxmcvsw3u2ajxvpdl/state?include=staking' \
    --header 'Authorization: <YOUR-API-KEY>'
  ```
</CodeGroup>

## 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.

<CodeGroup>
  ```cURL Transfer Ethereum theme={null}
  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"
      }
    }
  }'
  ```

  ```cURL Transfer Bitcoin theme={null}
  curl --request POST \
    --url https://api.adamik.io/api/bitcoin/transaction/encode \
    --header 'Authorization: <YOUR-API-KEY>' \
    --data '{
    "transaction": {
      "data": {
        "mode": "transfer",
        "sender": "bc1pdvagvvtvs3k35zxq7hp86x6cgp5kl6np786y50p7dj2m394rhrwq236ryc",
        "recipient": "bc1qekphvuz20qvdhkzywfe29r9vvtwxrszvaxzmqm",
        "amount": "1"
      }
    }
  }'
  ```

  ```cURL Delegate Cosmos theme={null}
  curl --request POST \
    --url https://api.adamik.io/api/cosmoshub/transaction/encode \
    --header 'Authorization: <YOUR-API-KEY>' \
    --data '{
    "transaction": {
      "data": {
        "mode": "delegate",
        "sender": "cosmos1g84934jpu3v5de5yqukkkhxmcvsw3u2ajxvpdl",
        "recipient": "",
        "validatorAddress": "cosmosvaloper1clpqr4nrk4khgkxj78fcwwh6dl3uw4epsluffn",
        "amount": "123"
      }
    }
  }'
  ```

  ```cURL Claim Rewards Dydx theme={null}
  curl --request POST \
    --url https://api.adamik.io/api/dydx/transaction/encode \
    --header 'Authorization: <YOUR-API-KEY>' \
    --data '{
    "transaction": {
      "data": {
        "mode": "claimRewards",
        "sender": "dydx1yvuhqg73fdzxvam9sj7mazfa38gpn7uleyzn78",
        "recipient": "dydx1yvuhqg73fdzxvam9sj7mazfa38gpn7uleyzn78",
        "validatorAddress": "dydxvaloper1mwhwf9rqh64ktr8t8xnz37nhg7vvy42ec56jwe",
        "useMaxAmount": true
      }
    }
  }'
  ```
</CodeGroup>
