JetBrains Users API

User management

Operations 3

GET /users JetBrains List Users #
GET /users/{userId} JetBrains Get User #
GET /users/me JetBrains Get Current User #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/jetbrains-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

jetbrains-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jetbrains Users API
  license:
    name: Proprietary
    url: https://www.jetbrains.com/legal/
  version: '1.0'
  description: 'Operations tagged Users across 3 of this provider''s published API definitions: jetbrains-hub-openapi.yml, jetbrains-teamcity-openapi.yml, jetbrains-youtrack-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{instance}.youtrack.cloud/hub/api/rest
  description: Hub API (via YouTrack Cloud)
  variables:
    instance:
      default: myinstance
      description: Your instance name
- url: https://{server}/app/rest
  description: TeamCity Server
  variables:
    server:
      default: teamcity.example.com
      description: Your TeamCity server hostname
- url: https://{instance}.youtrack.cloud/api
  description: YouTrack Cloud
  variables:
    instance:
      default: myinstance
      description: Your YouTrack instance name
tags:
- name: Users
  description: User management
paths:
  /users:
    get:
      summary: JetBrains List Users
      description: Returns a list of Hub users.
      operationId: listUsers
      tags:
      - Users
      parameters:
      - name: fields
        in: query
        schema:
          type: string
      - name: $skip
        in: query
        schema:
          type: integer
      - name: $top
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Successful response with user list
      security:
      - bearerAuth: []
    servers:
    - url: https://{instance}.youtrack.cloud/hub/api/rest
      description: Hub API (via YouTrack Cloud)
      variables:
        instance:
          default: myinstance
          description: Your instance name
  /users/{userId}:
    get:
      summary: JetBrains Get User
      description: Returns details of a specific user.
      operationId: getUser
      tags:
      - Users
      parameters:
      - name: userId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with user details
      security:
      - bearerAuth: []
    servers:
    - url: https://{instance}.youtrack.cloud/hub/api/rest
      description: Hub API (via YouTrack Cloud)
      variables:
        instance:
          default: myinstance
          description: Your instance name
  /users/me:
    get:
      summary: JetBrains Get Current User
      description: Returns the currently authenticated user.
      operationId: getCurrentUser
      tags:
      - Users
      responses:
        '200':
          description: Successful response with current user details
      security:
      - bearerAuth: []
    servers:
    - url: https://{instance}.youtrack.cloud/api
      description: YouTrack Cloud
      variables:
        instance:
          default: myinstance
          description: Your YouTrack instance name
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Permanent token or OAuth 2.0 Bearer Token
    basicAuth:
      type: http
      scheme: basic
      description: Username and password authentication
x-refined-from:
- jetbrains-hub-openapi.yml
- jetbrains-teamcity-openapi.yml
- jetbrains-youtrack-openapi.yml