Lumos Apps API
The Apps API from Lumos — 4 operation(s) for apps.
The Apps API from Lumos — 4 operation(s) for apps.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/lumos-apps-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Lumos REST AccessPolicies Apps 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: Apps
paths:
/apps:
get:
tags:
- Apps
summary: List all company apps
operationId: listApps
responses:
'200':
description: A list of apps
content:
application/json:
schema:
type: object
post:
tags:
- Apps
summary: Create app
operationId: createApp
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'201':
description: Created app
content:
application/json:
schema:
type: object
/apps/{app_id}:
parameters:
- name: app_id
in: path
required: true
schema:
type: string
get:
tags:
- Apps
summary: Retrieve specific app
operationId: getApp
responses:
'200':
description: The app
content:
application/json:
schema:
type: object
patch:
tags:
- Apps
summary: Update app
operationId: updateApp
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Updated app
content:
application/json:
schema:
type: object
/apps/categories:
get:
tags:
- Apps
summary: Fetch app categories
operationId: listAppCategories
responses:
'200':
description: A list of categories
content:
application/json:
schema:
type: object
/apps/{app_id}/settings:
parameters:
- name: app_id
in: path
required: true
schema:
type: string
get:
tags:
- Apps
summary: Get app settings
operationId: getAppSettings
responses:
'200':
description: App settings
content:
application/json:
schema:
type: object
patch:
tags:
- Apps
summary: Update app settings
operationId: updateAppSettings
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'200':
description: Updated settings
content:
application/json:
schema:
type: object
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: Lumos API key (lsk_ prefix)