OpenPanel Manage API

Manage projects and clients

Operations 17

GET /manage/projects
POST /manage/projects
GET /manage/projects/{id}
PATCH /manage/projects/{id}
DELETE /manage/projects/{id}
GET /manage/clients
POST /manage/clients
GET /manage/clients/{id}
PATCH /manage/clients/{id}
DELETE /manage/clients/{id}
GET /manage/references
POST /manage/references
GET /manage/references/{id}
PATCH /manage/references/{id}
DELETE /manage/references/{id}
GET /manage/projects/{projectId}/dashboards
GET /manage/projects/{projectId}/dashboards/{dashboardId}/reports

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/openpanel-manage-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

openpanel-manage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenPanel Event Manage API
  version: 1.0.0
  description: Legacy event ingestion (deprecated, use /track)
servers:
- url: https://api.openpanel.dev
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Manage
  description: Manage projects and clients
paths:
  /manage/projects:
    get:
      tags:
      - Manage
      description: List all projects for the organization.
      responses:
        '200':
          description: Default Response
    post:
      tags:
      - Manage
      description: Create a new project and its first write client.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                domain:
                  anyOf:
                  - anyOf:
                    - type: string
                      format: uri
                    - type: string
                      const: ''
                  - type: 'null'
                cors:
                  default: []
                  type: array
                  items:
                    type: string
                crossDomain:
                  default: false
                  type: boolean
                types:
                  default: []
                  type: array
                  items:
                    type: string
                    enum:
                    - website
                    - app
                    - backend
              required:
              - name
      responses:
        '200':
          description: Default Response
  /manage/projects/{id}:
    get:
      tags:
      - Manage
      description: Get a single project by ID.
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    patch:
      tags:
      - Manage
      description: Update project settings (name, domain, CORS, tracking options).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                domain:
                  anyOf:
                  - anyOf:
                    - type: string
                      format: uri
                    - type: string
                      const: ''
                  - type: 'null'
                cors:
                  type: array
                  items:
                    type: string
                crossDomain:
                  type: boolean
                allowUnsafeRevenueTracking:
                  type: boolean
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    delete:
      tags:
      - Manage
      description: Soft-delete a project (scheduled for removal in 24 hours).
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
  /manage/clients:
    get:
      tags:
      - Manage
      description: List all API clients for the organization, optionally filtered by project.
      responses:
        '200':
          description: Default Response
    post:
      tags:
      - Manage
      description: Create a new API client (read, write, or root type) and return its generated secret.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
                projectId:
                  type: string
                type:
                  default: write
                  type: string
                  enum:
                  - read
                  - write
                  - root
              required:
              - name
      responses:
        '200':
          description: Default Response
  /manage/clients/{id}:
    get:
      tags:
      - Manage
      description: Get a single API client by ID.
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    patch:
      tags:
      - Manage
      description: Update an API client name.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  minLength: 1
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    delete:
      tags:
      - Manage
      description: Delete an API client.
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
  /manage/references:
    get:
      tags:
      - Manage
      description: List annotation references for a project.
      responses:
        '200':
          description: Default Response
    post:
      tags:
      - Manage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                projectId:
                  type: string
                title:
                  type: string
                  minLength: 1
                description:
                  type: string
                datetime:
                  type: string
              required:
              - projectId
              - title
              - datetime
      responses:
        '200':
          description: Default Response
  /manage/references/{id}:
    get:
      tags:
      - Manage
      description: Get a single annotation reference by ID.
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    patch:
      tags:
      - Manage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                  minLength: 1
                description:
                  type: string
                datetime:
                  type: string
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
    delete:
      tags:
      - Manage
      parameters:
      - schema:
          type: string
        in: path
        name: id
        required: true
      responses:
        '200':
          description: Default Response
  /manage/projects/{projectId}/dashboards:
    get:
      tags:
      - Manage
      description: List all dashboards for a project.
      parameters:
      - schema:
          type: string
        in: path
        name: projectId
        required: true
      responses:
        '200':
          description: Default Response
  /manage/projects/{projectId}/dashboards/{dashboardId}/reports:
    get:
      tags:
      - Manage
      description: List all reports in a dashboard.
      parameters:
      - schema:
          type: string
        in: path
        name: projectId
        required: true
      - schema:
          type: string
        in: path
        name: dashboardId
        required: true
      responses:
        '200':
          description: Default Response