curl http://localhost:8000/api/v1/auth/me \
-H "Authorization: Bearer {token}"
{
"id": "user-1",
"email": "dev@acme-corp.com",
"display_name": "Carlos Dev",
"avatar_url": null,
"plan": "free",
"created_at": "2026-04-04T07:15:29"
}
Auth
Get Profile
Obtener el perfil del usuario autenticado.
GET
/
api
/
v1
/
auth
/
me
curl http://localhost:8000/api/v1/auth/me \
-H "Authorization: Bearer {token}"
{
"id": "user-1",
"email": "dev@acme-corp.com",
"display_name": "Carlos Dev",
"avatar_url": null,
"plan": "free",
"created_at": "2026-04-04T07:15:29"
}
curl http://localhost:8000/api/v1/auth/me \
-H "Authorization: Bearer {token}"
{
"id": "user-1",
"email": "dev@acme-corp.com",
"display_name": "Carlos Dev",
"avatar_url": null,
"plan": "free",
"created_at": "2026-04-04T07:15:29"
}
⌘I

