Skip to main content
GET
/
v1
/
me
Get current user
curl --request GET \
  --url https://api.chatgrid.ai/v1/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "object": "user",
  "data": {
    "id": "11aabb22-cc33-dd44-ee55-ff6677889900",
    "email": "moshi@chatgrid.ai",
    "created_at": "2026-01-10T08:00:00.000Z",
    "auth_mode": "api-key"
  }
}

Authorizations

Authorization
string
header
required

Pass your API key (prefixed cgk_) or a Supabase JWT in the Authorization: Bearer <token> header.

Response

User profile.

object
enum<string>
Available options:
user
data
object