v3

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-012582298.4 KB
Users

Get current user

Retrieve the currently authenticated Typefully user associated with your API Key

get/v2/me

Response

OK

idinteger required

Unique identifier for the user

namestring required

Name of the user

emailstring required

Email address of the user

profile_image_urlstring nullable

URL to the user's profile image. Null if not available.

signup_datestring date-time required

Timestamp when the user signed up (ISO 8601 format in UTC)

api_key_labelstring nullable

Label of the API key used to authenticate this request. Null if no label was set.

Example response

{
  "id": 12345,
  "name": "John Doe",
  "email": "user@example.com",
  "profile_image_url": "https://example.com/avatar.jpg",
  "signup_date": "2024-01-15T10:30:00Z",
  "api_key_label": "My Production Key"
}
All 31 operations