Skip to main content
GET
/
rewards
/
programs
List active reward programs
curl --request GET \
  --url https://app.elata.bio/api/rewards/programs \
  --header 'Authorization: Bearer <token>'
{
  "programs": [
    {
      "id": "<string>",
      "source": "protocol",
      "name": "<string>",
      "rewardToken": "<string>",
      "emissionsPerDay": "<string>",
      "startsAt": "2023-11-07T05:31:56Z",
      "endsAt": "2023-11-07T05:31:56Z",
      "eligibility": "<string>"
    }
  ]
}
Status: proposed. This endpoint is designed here but not yet implemented on app.elata.bio/api.

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.

Response

200 - application/json

Active programs.

programs
object[]