Skip to main content
GET
/
apps
/
search
Search apps
curl --request GET \
  --url https://app.elata.bio/api/apps/search \
  --header 'Authorization: Bearer <token>'
{
  "apps": [
    {
      "id": "<string>",
      "tokenAddress": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "creator": "<string>",
      "status": "raising",
      "createdAt": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "imageUrl": "<string>"
    }
  ],
  "nextCursor": "<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.

Query Parameters

q
string
required
Minimum string length: 1
cursor
string

Opaque pagination cursor returned by the previous page.

limit
integer
default:25
Required range: 1 <= x <= 100

Response

200 - application/json

Matching apps.

apps
object[]
nextCursor
string | null