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>"
}
'
import requests

url = "https://app.elata.bio/api/preflight/launch"

payload = {
"name": "<string>",
"symbol": "<string>",
"creator": "<string>",
"description": "<string>",
"imageUrl": "<string>",
"website": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
symbol: '<string>',
creator: '<string>',
description: '<string>',
imageUrl: '<string>',
website: '<string>'
})
};

fetch('https://app.elata.bio/api/preflight/launch', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.elata.bio/api/preflight/launch",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'symbol' => '<string>',
'creator' => '<string>',
'description' => '<string>',
'imageUrl' => '<string>',
'website' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://app.elata.bio/api/preflight/launch"

payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"creator\": \"<string>\",\n \"description\": \"<string>\",\n \"imageUrl\": \"<string>\",\n \"website\": \"<string>\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://app.elata.bio/api/preflight/launch")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"creator\": \"<string>\",\n \"description\": \"<string>\",\n \"imageUrl\": \"<string>\",\n \"website\": \"<string>\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.elata.bio/api/preflight/launch")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"creator\": \"<string>\",\n \"description\": \"<string>\",\n \"imageUrl\": \"<string>\",\n \"website\": \"<string>\"\n}"

response = http.request(request)
puts response.read_body
{
  "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.