Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.meetecho.ai/v1/auth/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "luthfulahi@meetecho.ai",
"password": "Password@12345",
"first_name": "Luthfulahi",
"last_name": "Oseni",
"business_name": "Grone",
"business_summary": "A new age mood app",
"industry": "Utility"
}
'import requests
url = "https://api.meetecho.ai/v1/auth/signup"
payload = {
"email": "luthfulahi@meetecho.ai",
"password": "Password@12345",
"first_name": "Luthfulahi",
"last_name": "Oseni",
"business_name": "Grone",
"business_summary": "A new age mood app",
"industry": "Utility"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
email: 'luthfulahi@meetecho.ai',
password: 'Password@12345',
first_name: 'Luthfulahi',
last_name: 'Oseni',
business_name: 'Grone',
business_summary: 'A new age mood app',
industry: 'Utility'
})
};
fetch('https://api.meetecho.ai/v1/auth/signup', 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://api.meetecho.ai/v1/auth/signup",
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([
'email' => 'luthfulahi@meetecho.ai',
'password' => 'Password@12345',
'first_name' => 'Luthfulahi',
'last_name' => 'Oseni',
'business_name' => 'Grone',
'business_summary' => 'A new age mood app',
'industry' => 'Utility'
]),
CURLOPT_HTTPHEADER => [
"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://api.meetecho.ai/v1/auth/signup"
payload := strings.NewReader("{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.meetecho.ai/v1/auth/signup")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetecho.ai/v1/auth/signup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4MWQ3Nzk5NC04ZjlhLTRjY2MtYmNlZC05YjQyZjcxNzNjMmYiLCJlbWFpbCI6Imx1dGVlcGhAZ21haWwuY29tIiwiaWF0IjoxNzczODUyMjU1LCJleHAiOjE3NzY0NDQyNTV9.gvFBQ4xxDEopUCXSGiZH76Nnr4Ka1MkgZU2pZkkOWL4",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4MWQ3Nzk5NC04ZjlhLTRjY2MtYmNlZC05YjQyZjcxNzNjMmYiLCJlbWFpbCI6Imx1dGVlcGhAZ21haWwuY29tIiwiaWF0IjoxNzczODUyMjU1LCJleHAiOjE3NzQ0NTcwNTV9.11URIUxCUZ0l2YMzHLpTEg6GpazSsFCzyEXcBMqAaso",
"user": {
"id": "81d77994-8f9a-4ccc-bced-9b42f7173c2f",
"email": "luthfulahi@meetecho.ai",
"first_name": "Luthfulahi",
"last_name": "Oseni"
},
"business": {
"id": "97bfa642-d2cb-46d5-8de8-6d3553c83007",
"name": "Grone"
},
"default_project": {
"id": "e56b4c35-882d-4604-9944-9763d314ea59",
"name": "default",
"api_key": "echo_6f437a610fbb65e6a2742c60ef3e916a80f638522ff11fcc1c711b75fd958534"
}
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}Creates a user, business, default project, and default API key in one
atomic transaction. Save the returned api_key — it is shown exactly once.
curl --request POST \
--url https://api.meetecho.ai/v1/auth/signup \
--header 'Content-Type: application/json' \
--data '
{
"email": "luthfulahi@meetecho.ai",
"password": "Password@12345",
"first_name": "Luthfulahi",
"last_name": "Oseni",
"business_name": "Grone",
"business_summary": "A new age mood app",
"industry": "Utility"
}
'import requests
url = "https://api.meetecho.ai/v1/auth/signup"
payload = {
"email": "luthfulahi@meetecho.ai",
"password": "Password@12345",
"first_name": "Luthfulahi",
"last_name": "Oseni",
"business_name": "Grone",
"business_summary": "A new age mood app",
"industry": "Utility"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
email: 'luthfulahi@meetecho.ai',
password: 'Password@12345',
first_name: 'Luthfulahi',
last_name: 'Oseni',
business_name: 'Grone',
business_summary: 'A new age mood app',
industry: 'Utility'
})
};
fetch('https://api.meetecho.ai/v1/auth/signup', 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://api.meetecho.ai/v1/auth/signup",
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([
'email' => 'luthfulahi@meetecho.ai',
'password' => 'Password@12345',
'first_name' => 'Luthfulahi',
'last_name' => 'Oseni',
'business_name' => 'Grone',
'business_summary' => 'A new age mood app',
'industry' => 'Utility'
]),
CURLOPT_HTTPHEADER => [
"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://api.meetecho.ai/v1/auth/signup"
payload := strings.NewReader("{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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://api.meetecho.ai/v1/auth/signup")
.header("Content-Type", "application/json")
.body("{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meetecho.ai/v1/auth/signup")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"email\": \"luthfulahi@meetecho.ai\",\n \"password\": \"Password@12345\",\n \"first_name\": \"Luthfulahi\",\n \"last_name\": \"Oseni\",\n \"business_name\": \"Grone\",\n \"business_summary\": \"A new age mood app\",\n \"industry\": \"Utility\"\n}"
response = http.request(request)
puts response.read_body{
"access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4MWQ3Nzk5NC04ZjlhLTRjY2MtYmNlZC05YjQyZjcxNzNjMmYiLCJlbWFpbCI6Imx1dGVlcGhAZ21haWwuY29tIiwiaWF0IjoxNzczODUyMjU1LCJleHAiOjE3NzY0NDQyNTV9.gvFBQ4xxDEopUCXSGiZH76Nnr4Ka1MkgZU2pZkkOWL4",
"refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI4MWQ3Nzk5NC04ZjlhLTRjY2MtYmNlZC05YjQyZjcxNzNjMmYiLCJlbWFpbCI6Imx1dGVlcGhAZ21haWwuY29tIiwiaWF0IjoxNzczODUyMjU1LCJleHAiOjE3NzQ0NTcwNTV9.11URIUxCUZ0l2YMzHLpTEg6GpazSsFCzyEXcBMqAaso",
"user": {
"id": "81d77994-8f9a-4ccc-bced-9b42f7173c2f",
"email": "luthfulahi@meetecho.ai",
"first_name": "Luthfulahi",
"last_name": "Oseni"
},
"business": {
"id": "97bfa642-d2cb-46d5-8de8-6d3553c83007",
"name": "Grone"
},
"default_project": {
"id": "e56b4c35-882d-4604-9944-9763d314ea59",
"name": "default",
"api_key": "echo_6f437a610fbb65e6a2742c60ef3e916a80f638522ff11fcc1c711b75fd958534"
}
}{
"statusCode": 123,
"message": "<string>",
"error": "<string>"
}"luthfulahi@meetecho.ai"
8"Password@12345"
"Luthfulahi"
"Oseni"
"Grone"
"A new age mood app"
"Utility"
Account created