Plandex Orgs API

Organization and role membership management.

Operations 4

GET /orgs List Orgs #
POST /orgs Create Org #
GET /orgs/session Get Org Session #
GET /orgs/roles List Org Roles #

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/plandex-orgs-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

plandex-orgs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Plandex Server Accounts Orgs API
  description: Management and orchestration REST API exposed by the Plandex server (open-source, Go) used by the Plandex CLI/REPL to drive long-running coding plans across organizations, projects, plans, branches, context, conversation, model packs, and configuration. The same API powered Plandex Cloud (winding down 2025-10-03) and now powers self-hosted / local-mode deployments via Docker. Default local-mode bind is http://localhost:8099.
  version: '2'
  contact:
    name: Plandex AI
    url: https://plandex.ai
  license:
    name: MIT
    url: https://github.com/plandex-ai/plandex/blob/main/LICENSE
  termsOfService: https://plandex.ai/terms
servers:
- url: http://localhost:8099
  description: Default self-hosted / local-mode Plandex server (Docker)
- url: https://api.plandex.ai
  description: Plandex Cloud (winding down as of 2025-10-03; no longer accepting new users)
security:
- BearerAuth: []
tags:
- name: Orgs
  description: Organization and role membership management.
paths:
  /orgs:
    get:
      tags:
      - Orgs
      summary: List Orgs
      description: List organizations the authenticated user belongs to.
      operationId: listOrgs
      responses:
        '200':
          description: List of orgs.
    post:
      tags:
      - Orgs
      summary: Create Org
      description: Create a new organization.
      operationId: createOrg
      responses:
        '201':
          description: Org created.
  /orgs/session:
    get:
      tags:
      - Orgs
      summary: Get Org Session
      description: Return the active org session context for the authenticated user.
      operationId: getOrgSession
      responses:
        '200':
          description: Org session details.
  /orgs/roles:
    get:
      tags:
      - Orgs
      summary: List Org Roles
      description: List RBAC roles available within the org.
      operationId: listOrgRoles
      responses:
        '200':
          description: List of roles.
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token issued by the Plandex server on sign-in. Used by the CLI/REPL for all authenticated API calls.