Lit Protocol Configuration API

The Configuration API from Lit Protocol — 4 operation(s) for configuration.

Operations 4

GET /get_lit_action_client_config #
GET /get_api_payers #
GET /get_admin_api_payer #
GET /version #

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/lit-protocol-configuration-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

lit-protocol-configuration-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: lit-api-server Account Management Configuration API
  description: Lit Express Node API Server
  version: 0.1.0
servers:
- url: /core/v1/
  description: Lit Protocol Express API (Core v1)
tags:
- name: Configuration
paths:
  /get_lit_action_client_config:
    get:
      tags:
      - Configuration
      operationId: get_lit_action_client_config
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/LitActionClientConfigResponse'
                - $ref: '#/components/schemas/ErrMessage'
  /get_api_payers:
    get:
      tags:
      - Configuration
      operationId: get_api_payers
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                oneOf:
                - type: array
                  items:
                    type: string
                - $ref: '#/components/schemas/ErrMessage'
  /get_admin_api_payer:
    get:
      tags:
      - Configuration
      operationId: get_admin_api_payer
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                oneOf:
                - type: string
                - $ref: '#/components/schemas/ErrMessage'
  /version:
    get:
      tags:
      - Configuration
      operationId: get_version
      responses:
        default:
          description: ''
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/VersionResponse'
                - $ref: '#/components/schemas/ErrMessage'
components:
  schemas:
    LitActionClientConfigResponse:
      description: GET /get_lit_action_client_config — effective ClientBuilder configuration values, including any chain-config overrides applied at startup.
      type: object
      required:
      - async_timeout_ms
      - client_timeout_ms_buffer
      - max_code_length
      - max_console_log_length
      - max_fetch_count
      - max_get_keys_count
      - max_response_length
      - max_retries
      - memory_limit_mb
      - timeout_ms
      properties:
        timeout_ms:
          type: integer
          format: uint64
          minimum: 0.0
        async_timeout_ms:
          type: integer
          format: uint64
          minimum: 0.0
        memory_limit_mb:
          type: integer
          format: uint32
          minimum: 0.0
        max_code_length:
          type: integer
          format: uint64
          minimum: 0.0
        max_response_length:
          type: integer
          format: uint64
          minimum: 0.0
        max_console_log_length:
          type: integer
          format: uint64
          minimum: 0.0
        max_fetch_count:
          type: integer
          format: uint32
          minimum: 0.0
        max_get_keys_count:
          type: integer
          format: uint32
          minimum: 0.0
        max_retries:
          type: integer
          format: uint32
          minimum: 0.0
        client_timeout_ms_buffer:
          type: integer
          format: uint64
          minimum: 0.0
    ErrMessage:
      type: string
    VersionResponse:
      type: object
      required:
      - commit_version
      - name
      - submodule_versions
      - version
      properties:
        name:
          type: string
        version:
          type: string
        commit_version:
          type: string
        submodule_versions:
          type: array
          items:
            type: array
            items:
            - type: string
            - type: string
            maxItems: 2
            minItems: 2