Skip to main content
POST
/
auth
/
refresh
Refresh access token
curl --request POST \
  --url https://api.meetecho.ai/api/auth/refresh \
  --header 'Authorization: Bearer <token>'
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "user": {
    "id": "81d77994-8f9a-4ccc-bced-9b42f7173c2f",
    "email": "luthfulahi@meetecho.ai",
    "first_name": "Luthfulahi",
    "last_name": "Oseni"
  }
}

Authorizations

Authorization
string
header
required

JWT refresh token. Use the refresh_token from login/signup.

Response

201 - application/json

New token pair

access_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

refresh_token
string
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

user
object