Files

1.3 KiB

Ink Airdrop

Query the Ink token airdrop allocation for a specific wallet address.

Rate limits

  • 1200 requests/min or 200 requests/10secs per IP address. (weight = 2)

{% hint style="info" %} See more details in API Rate limits {% endhint %}

Request

{% tabs %} {% tab title="Ink Airdrop" %} POST [ARCHIVE_ENDPOINT]

Body

{
  "ink_airdrop": {
    "address": "0x1234567890123456789012345678901234567890"
  }
}

{% endtab %} {% endtabs %}

Request Parameters

ParameterTypeRequiredDescription
addressstringYesWallet address (20-byte address) sent as a hex string.

Response

{% hint style="info" %} Note: The amount is returned as a string to preserve precision. {% endhint %}

{
  "amount": "1000000000000000000"
}

Response Fields

Field name Description
amount The Ink token airdrop amount allocated to the address.