Lumos AppStore API

The AppStore API from Lumos — 4 operation(s) for appstore.

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/lumos-appstore-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

lumos-appstore-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Lumos REST AccessPolicies AppStore API
  description: 'The Lumos REST API enables programmatic access to the Lumos identity

    platform for automating user, group, app, account, access policy, access

    request, access review, pre-approval rule, task, vendor agreement, and

    activity log management. All requests use a Bearer token (prefixed `lsk_`)

    in the Authorization header.

    '
  version: '1.0'
  contact:
    name: Lumos Developers
    url: https://developers.lumos.com/
  license:
    name: Proprietary
    url: https://www.lumos.com/terms
servers:
- url: https://api.lumos.com
  description: Lumos API
security:
- BearerAuth: []
tags:
- name: AppStore
paths:
  /appstore/apps:
    get:
      tags:
      - AppStore
      summary: List AppStore apps
      operationId: listAppStoreApps
      responses:
        '200':
          description: AppStore apps
          content:
            application/json:
              schema:
                type: object
    post:
      tags:
      - AppStore
      summary: Add app to AppStore
      operationId: createAppStoreApp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Added
          content:
            application/json:
              schema:
                type: object
  /appstore/apps/{app_id}:
    parameters:
    - name: app_id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - AppStore
      summary: Get AppStore app details
      operationId: getAppStoreApp
      responses:
        '200':
          description: AppStore app
          content:
            application/json:
              schema:
                type: object
    delete:
      tags:
      - AppStore
      summary: Remove app from AppStore
      operationId: deleteAppStoreApp
      responses:
        '204':
          description: Removed
  /appstore/requestable_permissions:
    get:
      tags:
      - AppStore
      summary: List requestable permissions
      operationId: listRequestablePermissions
      responses:
        '200':
          description: Permissions
          content:
            application/json:
              schema:
                type: object
    post:
      tags:
      - AppStore
      summary: Create requestable permission
      operationId: createRequestablePermission
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
  /appstore/requestable_permissions/{permission_id}:
    parameters:
    - name: permission_id
      in: path
      required: true
      schema:
        type: string
    patch:
      tags:
      - AppStore
      summary: Update requestable permission
      operationId: updateRequestablePermission
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Updated
          content:
            application/json:
              schema:
                type: object
    delete:
      tags:
      - AppStore
      summary: Delete requestable permission
      operationId: deleteRequestablePermission
      responses:
        '204':
          description: Deleted
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Lumos API key (lsk_ prefix)