Skip to main content
GET
/
preflight
/
requirements
Get current launch requirements
curl --request GET \
  --url https://app.elata.bio/api/preflight/requirements \
  --header 'Authorization: Bearer <token>'
{
  "minCreatorElta": "<string>",
  "launchFeeElta": "<string>",
  "image": {
    "minWidth": 123,
    "minHeight": 123,
    "allowedMimeTypes": [
      "<string>"
    ]
  },
  "symbol": {
    "pattern": "<string>",
    "minLength": 123,
    "maxLength": 123
  },
  "nameMaxLength": 123,
  "descriptionMaxLength": 123
}

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.

Response

200 - application/json

Launch requirements.

minCreatorElta
string
launchFeeElta
string
image
object
symbol
object
nameMaxLength
integer
descriptionMaxLength
integer