Skip to main content
POST
/
auth
/
signup
Create account
curl --request POST \
  --url https://api.meetecho.ai/api/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"
}
'
{
  "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"
  }
}

Body

application/json
email
string<email>
required
Example:

"luthfulahi@meetecho.ai"

password
string
required
Minimum string length: 8
Example:

"Password@12345"

first_name
string
required
Example:

"Luthfulahi"

last_name
string
required
Example:

"Oseni"

business_name
string
required
Example:

"Grone"

business_summary
string
required
Example:

"A new age mood app"

industry
string
required
Example:

"Utility"

Response

Account created

access_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

refresh_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

user
object
business
object
default_project
object

Save api_key — shown exactly once.