Lightrun License API

Company License API.

Operations 2

GET /api/v1/license Get the license for an organization #
PUT /api/v1/license Update the company license #

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/lightrun-license-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

lightrun-license-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Lightrun API documentation
  title: Lightrun Actions License API
  version: v1
servers:
- url: http://localhost:8090
  description: Generated server url
tags:
- description: Company License API.
  name: License
paths:
  /api/v1/license:
    get:
      description: 'Get the company license.


        **Required API permission level:** `COMPANY`'
      operationId: getCompanyLicense
      responses:
        '200':
          content:
            text/plain: {}
          description: Base64 encoded content of the license .
        '400':
          description: A required attribute of the API request is missing.
        '401':
          description: Unauthorized.
        '404':
          description: The license is not found
      security:
      - API Token: []
      summary: Get the license for an organization
      tags:
      - License
    put:
      description: 'Update the company license.


        **Required API permission level:** `COMPANY`'
      operationId: updateCompanyLicense
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrganizationLicenseDTO'
        required: true
      responses:
        '200':
          description: The license is updated successfully.
        '400':
          description: Invalid license content or signature / Newer license exists / A required attribute of the API request is missing.
        '401':
          description: Unauthorized.
      security:
      - API Token: []
      summary: Update the company license
      tags:
      - License
components:
  schemas:
    UpdateOrganizationLicenseDTO:
      type: object
      description: Company id (for multi-tenant deployments only)
      properties:
        license:
          type: string
          description: Base64-encoded JSON file containing license properties
          minLength: 1
        licenseSignature:
          type: string
          description: The signature of the Base64-encoded license
          minLength: 1
      required:
      - license
      - licenseSignature
  securitySchemes:
    API_Token:
      scheme: bearer
      type: http