Cable utilities API

The utilities API from Cable — 1 operation(s) for utilities.

Operations 1

GET /v2/deletion_request Check the status of a deletion request #

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/cable-utilities-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

cable-utilities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference Utilities API
  version: 1.0.0
servers:
- url: https://api.cable.tech
  description: Production
tags:
- name: utilities
paths:
  /v2/deletion_request:
    get:
      operationId: get-deletion-request
      summary: Check the status of a deletion request
      tags:
      - utilities
      parameters:
      - name: deletion_request_id
        in: query
        description: The unique identifier of the deletion request
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Deletion request status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Utilities_getDeletionRequest_Response_200'
        '401':
          description: Unauthorized request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
        '404':
          description: Deletion request not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
        '500':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
components:
  schemas:
    Utilities_getDeletionRequest_Response_200:
      type: object
      properties:
        deletion_request_id:
          type: string
          description: The unique identifier of the deletion request
        resource_type:
          type: string
          description: The type of resource that was deleted
        resource_id:
          type: string
          description: The unique identifier of the resource that was deleted
        status:
          $ref: '#/components/schemas/V2DeletionRequestGetResponsesContentApplicationJsonSchemaStatus'
          description: The status of the deletion request
      title: Utilities_getDeletionRequest_Response_200
    GeneralErrorErrorsItems:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
      title: GeneralErrorErrorsItems
    V2DeletionRequestGetResponsesContentApplicationJsonSchemaStatus:
      type: string
      enum:
      - pending
      - processing
      - completed
      description: The status of the deletion request
      title: V2DeletionRequestGetResponsesContentApplicationJsonSchemaStatus
    GeneralError:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        errors:
          type: array
          items:
            $ref: '#/components/schemas/GeneralErrorErrorsItems'
          description: Detailed information about errors in specific fields.
      required:
      - code
      - message
      title: GeneralError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
    BearerAuth:
      type: http
      scheme: bearer