Aptible Worker API

The worker API from Aptible — 1 operation(s) for worker.

Operations 1

POST /api/v1/worker/health-check Worker Health Check #

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/aptible-worker-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

aptible-worker-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aptible Worker API
  version: 0.1.0
  description: 'Operations tagged worker across 2 of this provider''s published API definitions: aptible-cloud-openapi-original.yml, aptible-worker-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: /
tags:
- name: worker
paths:
  /api/v1/worker/health-check:
    post:
      operationId: worker_health_check
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HealthCheckFromWorker'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      summary: Worker Health Check
      tags:
      - worker
    servers:
    - url: /
components:
  schemas:
    HealthCheckFromWorker:
      example:
        execution_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        environment_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        message_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91
        message: message
      properties:
        environment_id:
          format: uuid
          title: Environment Id
          type: string
        message_id:
          format: uuid
          title: Message Id
          type: string
        execution_id:
          format: uuid
          title: Execution Id
          type: string
        message:
          title: Message
          type: string
      required:
      - environment_id
      - execution_id
      - message
      title: HealthCheckFromWorker
      type: object
    ValidationError:
      properties:
        loc:
          items:
            $ref: '#/components/schemas/Location_inner'
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
      type: object
    Location_inner:
      anyOf:
      - type: string
      - type: integer
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http
x-refined-from:
- aptible-cloud-openapi-original.yml
- aptible-worker-api-openapi.yml