Skip to main content
POST
/
preflight
/
launch
Validate a candidate app launch
curl --request POST \
  --url https://app.elata.bio/api/preflight/launch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "symbol": "<string>",
  "creator": "<string>",
  "description": "<string>",
  "imageUrl": "<string>",
  "website": "<string>"
}
'
{
  "ok": true,
  "errors": [
    {
      "code": "<string>",
      "field": "<string>",
      "message": "<string>"
    }
  ],
  "warnings": [
    {
      "code": "<string>",
      "field": "<string>",
      "message": "<string>"
    }
  ],
  "nameAvailable": true,
  "symbolAvailable": true,
  "estimatedEltaCost": "<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.

Body

application/json
name
string
required
symbol
string
required
Pattern: ^[A-Z0-9]{2,10}$
creator
string
required
Pattern: ^0x[a-fA-F0-9]{40}$
description
string
imageUrl
string<uri>
website
string<uri>

Response

200 - application/json

Preflight result.

ok
boolean
required
errors
object[]
required
warnings
object[]
required
nameAvailable
boolean
symbolAvailable
boolean
estimatedEltaCost
string

Estimated total ELTA the creator must approve, as a decimal string in wei.