Opportunities

Our Opportunities API helps you find unclaimed airdrops, rewards, mints, governance proposals, renewals and more by passing an Ethereum, Solana, SUI or Starknet address as a query parameter

Example Request

curl --location 'https://api.kwikclaim.com/v1/public/opportunities?address=<YOUR_ADDRESS>' \
--header 'x-api-key: <YOUR_API_KEY_HERE>'

If you'd like to get an API key, please send us an email to [email protected] or message us on telegram

Response Parameters

Name
Type
Description

type

string

The type of opportunity. For example airdrop, reward and mint

address

string

The wallet address that is eligible for the opportunity

description

string

Description

nickname

string

Either an ENS name or plain address

symbol

string

Token symbol

image

string

Image URL

link

string

Link URL

domain

string

Domain name (e.g app.uniswap.org)

amount

number

Total token amount

usdAmount

number

Total usd amount

protocol

string

Protocol opportunity name

supplier

string

Supplier name

supplierImage

string

Supplier image URL

unknown

boolean

If true, this flag means the amount and USD value are unknown, but the user is eligible.

realtime

boolean

If true, it means we monitor the opportunity 24/7.

expires

number | undefined

Unix epoch in milliseconds for when the opportunity expires

Example Response

[
    {
        "type": "airdrop",
        "address": "0x6dc43be93a8b5fd37dc16f24872babc6da5e5e3e",
        "nickname": "james.eth",
        "description": "Optimism Season 5 sent OP tokens to users who have contributed to the growth of the Superchain Ecosystem",
        "symbol": "OP",
        "image": "https://kwikclaim.blob.core.windows.net/tokens/optimism.png",
        "link": "https://app.optimism.io/airdrops/5",
        "domain": "app.optimism.io",
        "protocol": "OP Airdrop #5",
        "amount": 225,
        "usdAmount": 217.9994,
        "unknown": false,
        "supplier": "Optimism",
        "supplierImage": "https://kwikclaim.blob.core.windows.net/suppliers/optimism.jpg",
        "realtime": true
    },
    {
        "type": "reward",
        "address": "0x6dc43be93a8b5fd37dc16f24872babc6da5e5e3e",
        "nickname": "james.eth",
        "description": "You have earned AAVE rewards from staking your AAVE",
        "symbol": "AAVE",
        "image": "https://kwikclaim.blob.core.windows.net/tokens/aave.png",
        "link": "https://app.aave.com/staking",
        "domain": "app.aave.com",
        "protocol": "Aave Rewards",
        "amount": 0.1849,
        "usdAmount": 38.7955,
        "unknown": false,
        "supplier": "Aave",
        "supplierImage": "https://kwikclaim.blob.core.windows.net/suppliers/aave.png",
        "realtime": true
    },
    {
        "type": "reward",
        "address": "0x6dc43be93a8b5fd37dc16f24872babc6da5e5e3e",
        "nickname": "james.eth",
        "description": "Curve Finance stakers can claim CRV tokens.",
        "symbol": "CRV",
        "image": "https://kwikclaim.blob.core.windows.net/tokens/curve.png",
        "link": "https://dao-old.curve.fi/minter/vesting",
        "domain": "dao-old.curve.fi",
        "protocol": "Curve Finance",
        "amount": 46.5995,
        "usdAmount": 19.4779,
        "unknown": false,
        "supplier": "Curve Finance",
        "supplierImage": "https://kwikclaim.blob.core.windows.net/suppliers/curve.jpg",
        "realtime": true
    }
]

Premium Airdrops/Rewards

If the protocol starts with premium-, it means it’s a premium airdrop or reward. All airdrops are considered premium and the reward is premium if its value exceeds $8 USD.

We also hide all information including its name, description, total token amount, symbol and more.

Example Response

[
    {
        "type": "airdrop",
        "address": "0x51d0a5cbe5666ad3eee303f0d16fcde9c5cd3009",
        "nickname": "0x51d0a5cbe5666ad3eee303f0d16fcde9c5cd3009",
        "description": "premium-316.837101069823-0",
        "symbol": "premium-316.837101069823-0",
        "image": "https://kwikclaim.blob.core.windows.net/images/premium.png",
        "link": "https://app.kwikclaim.com/pricing",
        "domain": "app.kwikclaim.com",
        "protocol": "premium-316.837101069823-0",
        "amount": 0,
        "usdAmount": 2661.7462,
        "unknown": false,
        "supplier": "premium-316.837101069823-0",
        "supplierImage": "https://kwikclaim.blob.core.windows.net/images/premium.png",
        "realtime": true
    }   
]

Last updated