Get Current User Information

GEThttps://api.konpro.ai/v1/user/me

Retrieve detailed information about the currently authenticated user, including username, email, and full name.

Request History

Log in to see full request history

TIMESTATUSUSER AGENT
Make a request to see history.

0 Requests This Month

cURL Request

shell
curl --request GET \
--url https://api.konpro.ai/v1/user/me \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

Response

Response Structure

FieldTypeDescription
usernamestringUnique identifier for the user
emailstringUser's registered email address
first_namestringUser's first name
last_namestringUser's last name or initials

Sample Response

json
{
  "username": "john_doe",
  "email": "john.doe@example.com",
  "first_name": "John",
  "last_name": "Doe"
}

Notes

  • Requires API authentication.
  • Returns information for the currently authenticated user only.
  • Username is the unique identifier for the user account.
  • Email address is the registered contact email.
  • First and last names are optional profile information.
  • Useful for user identification and profile management.
  • Refer to Error Responses for error information.

Example Usage

Shell
curl --request GET \
--url https://api.konpro.ai/v1/user/me \
--header 'accept: application/json' \
--header 'x-api-key: <your-api-key>'

LANGUAGE

CREDENTIALS

HEADER

RESPONSE

Examples

Choose an example:

application/json
200 - Success
401 - Unauthorized