Skip to main content
GET
/
apps
/
{tokenAddress}
Get app
curl --request GET \
  --url https://app.elata.bio/api/apps/{tokenAddress} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "tokenAddress": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "creator": "<string>",
  "status": "raising",
  "createdAt": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "imageUrl": "<string>",
  "website": "<string>",
  "social": {},
  "team": [
    {
      "address": "<string>",
      "name": "<string>",
      "role": "<string>"
    }
  ],
  "artifacts": [
    {
      "kind": "build",
      "url": "<string>",
      "sha256": "<string>"
    }
  ]
}

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

App detail.

id
string
required
tokenAddress
string
required
Pattern: ^0x[a-fA-F0-9]{40}$
name
string
required
symbol
string
required
creator
string
required
Pattern: ^0x[a-fA-F0-9]{40}$
status
enum<string>
required
Available options:
raising,
live
createdAt
string<date-time>
required
description
string
imageUrl
string<uri>
website
string<uri>
social
object

Map of platform → URL (twitter, discord, github, ...).

team
object[]
artifacts
object[]