Skip to content

GET /v1/me

This endpoint returns information about the authenticated user. This requires an API key.

Request

GET https://thingify.tools/api/v1/me
Authorization: Bearer <api-key>

Response Schema

type ApiUser = {
id: string;
name: string;
email: string;
image: string;
role: string;
createdAt: number | null;
updatedAt: number | null;
};

Response Example

{
"id": "z97mxnL5RDTuoPJrkxsj3",
"name": "embd",
"email": "[email protected]",
"image": "https://cdn.discordapp.com/avatars/476641014841475084/02515c2952b1dbcbe92e0edecab99627.png",
"role": "admin",
"createdAt": null,
"updatedAt": null
}