# Current user and token information Get information about the current user and token Endpoint: GET /api/v1/me Version: 1.0.0 Security: x-api-key ## Query parameters: - `allowRedirect` (boolean) If set to true, the API will return a 303 redirect response if the response payload is too large. The header and will also include the URL to the actual resource. Example: true ## Response 200 fields (application/json): - `data` (object) - `data.apiKeyId` (string) id of the API token Example: "5e94d5b63f557b001420bbe3" - `data.userId` (string) ID of the user Example: "5e94d5b63f557b001420bbe4" ## Response 303 fields (application/json): - `data` (object) - `data.url` (string) The URL to the new location of the resource. ## Response 401 fields (application/json): - `message` (string) Reason for the error such as incorrect service access, malformed, expired or deactivated token. Example: "Invalid token" - `name` (string) Unauthorized Example: "Unauthorized" - `status` (integer) The HTTP status code. Example: 401