Skip to main content
GET
/
rewards
/
{address}
Get claimable rewards
curl --request GET \
  --url https://app.elata.bio/api/rewards/{address} \
  --header 'Authorization: Bearer <token>'
{
  "address": "<string>",
  "totalClaimableUsd": 123,
  "items": [
    {
      "programId": "<string>",
      "source": "protocol",
      "tokenAddress": "<string>",
      "symbol": "<string>",
      "claimable": "<string>",
      "claimableUsd": 123
    }
  ]
}
Status: proposed. Requires a SIWE-issued bearer token whose sub matches {address}.

Authorizations

Authorization
string
header
required

SIWE-issued JWT, scoped to a wallet address. Obtain via Sign-In With Ethereum (EIP-4361) against app.elata.bio. Required for personalized Portfolio and Rewards endpoints. The sub claim is the wallet address; a request whose path {address} does not match the sub is rejected.

Path Parameters

address
string
required

Wallet address.

Pattern: ^0x[a-fA-F0-9]{40}$

Response

Claimable across protocol and per-app distributors.

address
string
totalClaimableUsd
number
items
object[]