Skip to main content
GET
/
market
/
apps
/
{tokenAddress}
Get app token market snapshot
curl --request GET \
  --url https://app.elata.bio/api/market/apps/{tokenAddress} \
  --header 'Authorization: Bearer <token>'
{
  "tokenAddress": "<string>",
  "priceElta": 123,
  "priceUsd": 123,
  "marketCapUsd": 123,
  "fdvUsd": 123,
  "volume24hUsd": 123,
  "holders": 123,
  "curveProgressPct": 123,
  "updatedAt": "2023-11-07T05:31:56Z"
}
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}$

Response

200 - application/json

Market snapshot for a single app token.

tokenAddress
string
priceElta
number
priceUsd
number
marketCapUsd
number
fdvUsd
number
volume24hUsd
number
holders
integer
curveProgressPct
number<float>
updatedAt
string<date-time>