JetBrains Projects API

Project management

Operations 6

GET /projects JetBrains List Projects #
POST /projects JetBrains Create Project #
GET /projects/{projectId} JetBrains Get Project #
GET /projects/{projectLocator} JetBrains Get Project #
GET /admin/projects JetBrains List Projects #
GET /admin/projects/{projectId} JetBrains Get Project #

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-projects-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-projects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jetbrains Projects API
  license:
    name: Proprietary
    url: https://www.jetbrains.com/legal/
  version: '1.0'
  description: 'Operations tagged Projects across 4 of this provider''s published API definitions: jetbrains-hub-openapi.yml, jetbrains-space-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://{organization}.jetbrains.space/api/http
  description: JetBrains Space Cloud
  variables:
    organization:
      default: myorg
      description: Your Space organization 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: Projects
  description: Project management
paths:
  /projects:
    get:
      summary: JetBrains List Projects
      description: Returns a list of Hub projects.
      operationId: listProjects
      tags:
      - Projects
      responses:
        '200':
          description: Successful response with project list
      security:
      - bearerAuth: []
    post:
      summary: JetBrains Create Project
      description: Creates a new project.
      operationId: createProject
      tags:
      - Projects
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Project created successfully
      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
  /projects/{projectId}:
    get:
      summary: JetBrains Get Project
      description: Returns details of a specific project.
      operationId: getProject
      tags:
      - Projects
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with project details
      security:
      - bearerAuth: []
    servers:
    - url: https://{organization}.jetbrains.space/api/http
      description: JetBrains Space Cloud
      variables:
        organization:
          default: myorg
          description: Your Space organization name
  /projects/{projectLocator}:
    get:
      summary: JetBrains Get Project
      description: Returns details of a specific project.
      operationId: getProject
      tags:
      - Projects
      parameters:
      - name: projectLocator
        in: path
        required: true
        schema:
          type: string
      - name: fields
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response with project details
      security:
      - bearerAuth: []
      - basicAuth: []
    servers:
    - url: https://{server}/app/rest
      description: TeamCity Server
      variables:
        server:
          default: teamcity.example.com
          description: Your TeamCity server hostname
  /admin/projects:
    get:
      summary: JetBrains List Projects
      description: Returns a list of projects.
      operationId: listProjects
      tags:
      - Projects
      parameters:
      - name: fields
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response with project list
      security:
      - bearerAuth: []
    servers:
    - url: https://{instance}.youtrack.cloud/api
      description: YouTrack Cloud
      variables:
        instance:
          default: myinstance
          description: Your YouTrack instance name
  /admin/projects/{projectId}:
    get:
      summary: JetBrains Get Project
      description: Returns details of a specific project.
      operationId: getProject
      tags:
      - Projects
      parameters:
      - name: projectId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response with project 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-space-openapi.yml
- jetbrains-teamcity-openapi.yml
- jetbrains-youtrack-openapi.yml