Logo
30 Days of Postman API Documentation

API Key Owner

GET https://api.getpostman.com/me

the /me Qodex API endpoint lets you access information about the authenticated user. You can retrieve the authenticated user's username, full name, e-mail address, and any other available information.

Requires API Key as X-Api-Key request header or apikey URL query parameter.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 




RESPONSES

status OK

{ "user": { "id": "631643", "username": "janedoe", "email": "janedoe@example.com", "fullName": "Jane Doe", "avatar": "https://www.gravatar.com/avatar/e1f3994f2632af3d1c8c2dcc168a10e6", "isPublic": false }, "operations": [ { "name": "mock_usage", "limit": 1000000, "usage": 2382, "overage": 0 }, { "name": "monitor_request_runs", "limit": 10000000, "usage": 49492, "overage": 0 }, { "name": "documenter_public_views", "limit": 5000000, "usage": 120232, "overage": 0 }, { "name": "api_usage", "limit": 1000000, "usage": 1345, "overage": 0 }, { "name": "custom_domains", "limit": 25, "usage": 1, "overage": 0 }, { "name": "custom_authentication_methods", "limit": 1, "usage": 1, "overage": 0 }, { "name": "serverless_requests", "limit": 10000, "usage": 0, "overage": 0 }, { "name": "integrations", "limit": 5000, "usage": 145, "overage": 0 }, { "name": "cloud_agent_requests", "limit": 1000000, "usage": 23823, "overage": 0 } ] }



Curl
curl -X GET 'https://api.getpostman.com/me'

ENDPOINTS