Postman API
  1. User
Postman API
  • API
    • Get all APIs
      GET
    • Create API
      POST
    • Delete an API
      DELETE
    • Single API
      GET
    • Update an API
      PUT
    • Get All API Versions
      GET
    • Create API Version
      POST
    • Delete an API Version
      DELETE
    • Get an API Version
      GET
    • Update an API Version
      PUT
    • Get contract test relations
      GET
    • Get documentation relations
      GET
    • Get environment relations
      GET
    • Get integration test relations
      GET
    • Get monitor relations
      GET
    • Get linked relations
      GET
    • Create relations
      POST
    • Create Schema
      POST
    • Get Schema
      GET
    • Update Schema
      PUT
    • Create collection from schema
      POST
    • Get test suite relations
      GET
    • Sync relations with schema
      PUT
  • Collections
    • All Collections
      GET
    • Create Collection
      POST
    • Create a Fork
      POST
    • Merge a Fork
      POST
    • Delete Collection
      DELETE
    • Single Collection
      GET
    • Update Collection
      PUT
  • Environments
    • All Environments
    • Create Environment
    • Delete Environment
    • Single Environment
    • Update Environment
  • Import
    • Import exported data
    • Import external API specification
  • User
    • API Key Owner
      GET
  • Mocks
    • All Mocks
    • Create Mock
    • Delete Mock
    • Single Mock
    • Update Mock
    • Publish Mock
    • Unpublish Mock
  • Monitors
    • All Monitors
    • Create Monitor
    • Delete Monitor
    • Single Monitor
    • Update Monitor
    • Run a Monitor
  • Webhooks
    • Create Webhook
  • Workspaces
    • All workspaces
    • Create Workspace
    • Delete Workspace
    • Single workspace
    • Update Workspace
  1. User

API Key Owner

GET
/me
User
the /me Postman 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.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.getpostman.com/me'
Response Response Example
{
  "operations": [
    {
      "limit": 1000000,
      "name": "mock_usage",
      "overage": 0,
      "usage": 2382
    },
    {
      "limit": 10000000,
      "name": "monitor_request_runs",
      "overage": 0,
      "usage": 49492
    },
    {
      "limit": 5000000,
      "name": "documenter_public_views",
      "overage": 0,
      "usage": 120232
    },
    {
      "limit": 1000000,
      "name": "api_usage",
      "overage": 0,
      "usage": 1345
    },
    {
      "limit": 25,
      "name": "custom_domains",
      "overage": 0,
      "usage": 1
    },
    {
      "limit": 1,
      "name": "custom_authentication_methods",
      "overage": 0,
      "usage": 1
    },
    {
      "limit": 10000,
      "name": "serverless_requests",
      "overage": 0,
      "usage": 0
    },
    {
      "limit": 5000,
      "name": "integrations",
      "overage": 0,
      "usage": 145
    },
    {
      "limit": 1000000,
      "name": "cloud_agent_requests",
      "overage": 0,
      "usage": 23823
    }
  ],
  "user": {
    "avatar": "https://www.gravatar.com/avatar/e1f3994f2632af3d1c8c2dcc168a10e6",
    "email": "janedoe@example.com",
    "fullName": "Jane Doe",
    "id": "631643",
    "isPublic": false,
    "username": "janedoe"
  }
}

Request

None

Responses

🟢200Valid Response
application/json
Body
operations
array [object {4}] 
optional
limit
number 
optional
Example:
1000000
name
string 
optional
Example:
mock_usage
overage
number 
optional
Example:
0
usage
number 
optional
Example:
2382
user
object 
optional
avatar
string 
optional
Example:
https://www.gravatar.com/avatar/e1f3994f2632af3d1c8c2dcc168a10e6
email
string 
optional
Example:
janedoe@example.com
fullName
string 
optional
Example:
Jane Doe
id
string 
optional
Example:
631643
isPublic
boolean 
optional
Example:
false
username
string 
optional
Example:
janedoe
Previous
Import external API specification
Next
All Mocks
Built with