Get Current User Information
GET
https://api.konpro.ai/v1/user/meRetrieve detailed information about the currently authenticated user, including username, email, and full name.
Request History
Log in to see full request history
| TIME | STATUS | USER 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
| Field | Type | Description |
|---|---|---|
| username | string | Unique identifier for the user |
| string | User's registered email address | |
| first_name | string | User's first name |
| last_name | string | User'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
LANGUAGE
CREDENTIALS
HEADER
RESPONSE
Examples
Choose an example:
application/json
200 - Success
401 - Unauthorized