GET
/
me
curl --request GET \
  --url https://api.mkinf.io/v0.1/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "1125a742-2e75-4b1a-909a-e8ba86bcf862",
  "type": "user",
  "email": "info@mkinf.io",
  "created_at": "2024-08-05T10:59:59.017229Z",
  "updated_at": "2024-09-09T22:26:58.615993Z"
}

Get information about the currently authenticated user or API key. Returns different response schemas based on whether authenticated with a user account or API key.

Response Types

User Account Response:

  • User ID
  • Account type
  • Email
  • Creation timestamp
  • Last update timestamp

API Key Response:

  • Key ID
  • Key type
  • Project ID
  • Creation timestamp

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

The response is of type object.