Spectro Cloud activations API

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

Operations 1

GET /v1/activations/system Returns system activation state from in-memory cache for UI banner #

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 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

spectro-cloud-activations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Local Management Activations API
  version: v1
servers:
- url: https://edge-host-ip:5080
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
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ActivationsSystemResponse'
        '400':
          description: Invalid request data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1Error'
      security:
      - ApiKey: []
      - Authorization: []
      summary: Returns system activation state from in-memory cache for UI banner
      tags:
      - activations
components:
  schemas:
    v1ActivationsSystemResponse:
      properties:
        status:
          properties:
            expiresAt:
              $ref: '#/components/schemas/v1Time'
            state:
              enum:
              - Active
              - Pending
              - Inactive
              type: string
          required:
          - state
          type: object
      type: object
    v1Error:
      properties:
        code:
          type: string
        details:
          type: object
        message:
          type: string
        ref:
          type: string
      type: object
    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
  securitySchemes:
    Authorization:
      description: JWT authorization token obtained using /v1/users/default/login API
      type: apiKey
      name: Authorization
      in: header