Skip to main content
POST
/
auth
/
login
Log in
curl --request POST \
  --url https://api.meetecho.ai/api/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "luthfulahi@meetecho.ai",
  "password": "Password@12345"
}
'
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "user": {
    "id": "81d77994-8f9a-4ccc-bced-9b42f7173c2f",
    "email": "luthfulahi@meetecho.ai",
    "first_name": "Luthfulahi",
    "last_name": "Oseni"
  }
}

Body

application/json
email
string<email>
required
Example:

"luthfulahi@meetecho.ai"

password
string
required
Example:

"Password@12345"

Response

Authenticated

access_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

refresh_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

user
object