OneUptime Projects API

The Projects API from OneUptime — 9 operation(s) for projects.

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/oneuptime-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 email required.

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

OpenAPI Specification

oneuptime-projects-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: OneUptime Projects API
  description: OneUptime API for monitoring, incident management, alerts, on-call duty, workflows, and status pages. Endpoints are scoped under a project.
  version: '1.0'
servers:
- url: https://oneuptime.com/api
  description: OneUptime API
tags:
- name: Projects
paths:
  /projects:
    post:
      summary: Create a new OneUptime project
      operationId: createProject
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: Get project details
      operationId: getProject
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    put:
      summary: Update project settings
      operationId: updateProject
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/probes:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: List custom probes for a project
      operationId: listProbes
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    post:
      summary: Deploy a new monitoring probe
      operationId: createProbe
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/probes/{probeId}:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    - name: probeId
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get probe details
      operationId: getProbe
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    put:
      summary: Update probe configuration
      operationId: updateProbe
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    delete:
      summary: Remove a probe
      operationId: deleteProbe
      responses:
        '204':
          description: Probe deleted
      tags:
      - Projects
  /projects/{projectId}/incidents:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: List incidents in a project
      operationId: listIncidents
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    post:
      summary: Create a new incident
      operationId: createIncident
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/monitors:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: List monitors
      operationId: listMonitors
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
    post:
      summary: Create a new monitor
      operationId: createMonitor
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/alerts:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: List alerts
      operationId: listAlerts
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/on-call-policies:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    get:
      summary: List on-call duty policies and escalation rules
      operationId: listOnCallPolicies
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
  /projects/{projectId}/workflows:
    parameters:
    - $ref: '#/components/parameters/ProjectId'
    post:
      summary: Create a workflow for automated incident response
      operationId: createWorkflow
      requestBody:
        $ref: '#/components/requestBodies/Generic'
      responses:
        '200':
          $ref: '#/components/responses/Generic'
      tags:
      - Projects
components:
  parameters:
    ProjectId:
      name: projectId
      in: path
      required: true
      schema:
        type: string
  requestBodies:
    Generic:
      required: true
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
  responses:
    Generic:
      description: Successful response
      content:
        application/json:
          schema:
            type: object
            additionalProperties: true
x-generated-from: https://oneuptime.com/api/openapi/spec
x-generated-by: claude-crawl-2026-05-08