Skip to main content
GET
/
apps
/
{tokenAddress}
/
activity
List app activity
curl --request GET \
  --url https://app.elata.bio/api/apps/{tokenAddress}/activity \
  --header 'Authorization: Bearer <token>'
{
  "events": [
    {
      "kind": "buy",
      "txHash": "<string>",
      "blockNumber": 123,
      "timestamp": "2023-11-07T05:31:56Z",
      "actor": "<string>",
      "eltaIn": "<string>",
      "tokensOut": "<string>"
    }
  ],
  "nextCursor": "<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.

Path Parameters

tokenAddress
string
required

ERC-20 address of the app token.

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

Query Parameters

cursor
string

Opaque pagination cursor returned by the previous page.

limit
integer
default:25
Required range: 1 <= x <= 100
kind
enum<string>
Available options:
buy,
sell,
launch,
graduation

Response

200 - application/json

Activity events.

events
object[]
nextCursor
string | null