Spectro Cloud activations API

The activations API from Spectro Cloud — 1 operation(s) for activations.

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/spectro-cloud-activations-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

spectro-cloud-activations-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Local Management APIs activations API
  version: v1
servers:
- url: https://edge-host-ip:5080
schemes:
- http
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: activations
  x-displayName: Activations
paths:
  /v1/activations/system:
    get:
      description: Only for UI to show the banner
      operationId: v1ActivationsSystemGet
      parameters:
      - description: A project UID is required for project-scoped resources and should be omitted when targeting tenant-scoped resources
        in: header
        name: ProjectUid
        type: string
      responses:
        '200':
          description: Successful operation
          schema:
            $ref: '#/definitions/v1ActivationsSystemResponse'
        '400':
          description: Invalid request data
          schema:
            $ref: '#/definitions/v1Error'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns system activation state from in-memory cache for UI banner
      tags:
      - activations
definitions:
  v1Time:
    description: Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON.  Wrappers are provided for many of the factory methods that the time package offers.
    format: date-time
    type: string
  v1Error:
    properties:
      code:
        type: string
      details:
        type: object
      message:
        type: string
      ref:
        type: string
    type: object
  v1ActivationsSystemResponse:
    properties:
      status:
        properties:
          expiresAt:
            $ref: '#/definitions/v1Time'
          state:
            enum:
            - Active
            - Pending
            - Inactive
            type: string
        required:
        - state
        type: object
    type: object
securityDefinitions:
  Authorization:
    description: JWT authorization token obtained using /v1/users/default/login API
    type: apiKey
    name: Authorization
    in: header