Overops Timers API

Fetch and manipulate OverOps Timers - bottleneck detection and performance diagnosis

Operations 5

GET /services/{env_id}/timers List timers
POST /services/{env_id}/timers Create new timer
GET /services/{env_id}/timers/{timer_id} Get timer properties
POST /services/{env_id}/timers/{timer_id} Edit timer data
DELETE /services/{env_id}/timers/{timer_id} Delete timer

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/overops-timers-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

overops-timers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Services Alerts Timers API
  contact:
    email: hello@overops.com
  description: "Main OverOps API.\nThe REST API layer enables OverOps admins and users to perform and automate all actions\nprovided by the OverOps UI available at https://app.overops.com (or On-premises equivalent URL) via a platform independent programmatic interface.\nA wrapper Java client API library that leverages these APIs for convenience by\nJava and Scala developers is available at https://github.com/takipi/api-client and on Maven Central.\n\nAll calls must be authenticated using one of the following methods:\n  1. Using `x-api-key` header (To generate the token, go to `Settings` --> `Account Settings` in the OverOps App). This is the recommended method.\n  2. Using Basic auth with `username:password` combo.\n"
servers:
- url: https://api.overops.com/api/v1
security:
- basicAuth: []
- ApiKeyAuth: []
tags:
- name: Timers
  description: Fetch and manipulate OverOps Timers - bottleneck detection and performance diagnosis
paths:
  /services/{env_id}/timers:
    get:
      tags:
      - Timers
      summary: List timers
      description: List all existing timers
      parameters:
      - in: path
        name: env_id
        description: Environment ID to use (e.g. S1234)
        required: true
        schema:
          type: string
      responses:
        '200':
          description: List of timers
          content:
            '*/*':
              schema:
                type: object
                properties:
                  timers:
                    type: array
                    items:
                      $ref: '#/components/schemas/Timer'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
    post:
      tags:
      - Timers
      summary: Create new timer
      description: Create new timer
      parameters:
      - in: path
        name: env_id
        description: Environment ID to use (e.g. S1234)
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Timer'
        description: Single timer
      responses:
        '200':
          $ref: '#/components/responses/OK'
        '400':
          $ref: '#/components/responses/BadRequestError'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '409':
          $ref: '#/components/responses/Conflict'
  /services/{env_id}/timers/{timer_id}:
    get:
      tags:
      - Timers
      summary: Get timer properties
      description: Get timer properties
      parameters:
      - in: path
        name: env_id
        description: Environment ID to use (e.g. S1234)
        required: true
        schema:
          type: string
      - in: path
        name: timer_id
        description: Timer to use
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Timer properties
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/Timer'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
    post:
      tags:
      - Timers
      summary: Edit timer data
      description: Edit timer data
      parameters:
      - in: path
        name: env_id
        description: Environment ID to use (e.g. S1234)
        required: true
        schema:
          type: string
      - in: path
        name: timer_id
        description: View to use
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Timer'
        description: Single timer properties
      responses:
        '200':
          $ref: '#/components/responses/OK'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
        '404':
          $ref: '#/components/responses/NotFoundError'
    delete:
      tags:
      - Timers
      summary: Delete timer
      description: Delete timer
      parameters:
      - in: path
        name: env_id
        description: Environment ID to use (e.g. S1234)
        required: true
        schema:
          type: string
      - in: path
        name: timer_id
        description: Timer to use
        required: true
        schema:
          type: string
      responses:
        '200':
          $ref: '#/components/responses/OK'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          $ref: '#/components/responses/ForbiddenError'
components:
  responses:
    ForbiddenError:
      description: Forbidden
    Conflict:
      description: Conflict
    BadRequestError:
      description: Bad Request
    UnauthorizedError:
      description: Unauthorized
    OK:
      description: OK
    NotFoundError:
      description: Not Found
  schemas:
    Timer:
      description: Timer properties
      type: object
      properties:
        id:
          type: string
          description: This is an auto generated ID. When creating/editing a timer, the value recevied in this field will be ignored.
          example: '34'
        class_name:
          type: string
          example: DBManager
        method_name:
          type: string
          example: SaveWithRetries
        threshold:
          type: integer
          description: Threshold in ms
          example: 8000
        servers:
          type: array
          items:
            type: string
            example: na-dotCMS-2
        applications:
          type: array
          items:
            type: string
            example: MyApp
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY