Lumos AccessRequests API

The AccessRequests API from Lumos — 3 operation(s) for accessrequests.

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-accessrequests-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-accessrequests-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Lumos REST AccessPolicies AccessRequests 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: AccessRequests
paths:
  /appstore/access_request:
    post:
      tags:
      - AccessRequests
      summary: Create access request
      operationId: createAccessRequest
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '201':
          description: Access request created
          content:
            application/json:
              schema:
                type: object
  /appstore/access_requests:
    get:
      tags:
      - AccessRequests
      summary: List access requests
      operationId: listAccessRequests
      responses:
        '200':
          description: Access requests
          content:
            application/json:
              schema:
                type: object
  /appstore/access_requests/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      tags:
      - AccessRequests
      summary: Get access request details
      operationId: getAccessRequest
      responses:
        '200':
          description: Access request
          content:
            application/json:
              schema:
                type: object
    delete:
      tags:
      - AccessRequests
      summary: Cancel access request
      operationId: cancelAccessRequest
      responses:
        '204':
          description: Cancelled
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Lumos API key (lsk_ prefix)