Authentication
Authentication endpoints
Verify API key and get user information
Validates the provided API key and returns the authenticated user information
Authorization<token>
API key for authentication. Use 'Bearer ' format.
In: header
Response Body
curl -X GET "https://app.meingpt.com/api/auth-token"
{
"status": "success",
"user": {}
}
{
"status": "error",
"message": "string"
}