> ## Documentation Index
> Fetch the complete documentation index at: https://actelos.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get service configuration

> Returns the configuration payload stored for the service. If no configuration exists yet, an empty object is returned.



## OpenAPI

````yaml /cyrnel/openapi.json get /services/{serviceId}/config
openapi: 3.0.0
info:
  title: Cyrnel API
  description: >-
    Cyrnel is a universal layer that connects AI agents and LLM applications to
    any external service, API, or device regardless of protocol or standard. It
    acts as an adaptive bridge between your AI and the outside world, enabling
    seamless integrations through code execution, async operation handling, and
    built-in observability and security controls.
  version: 1.0.0
servers:
  - url: http://localhost:9371
security: []
paths:
  /services/{serviceId}/config:
    get:
      tags:
        - Services
      summary: Get service configuration
      description: >-
        Returns the configuration payload stored for the service. If no
        configuration exists yet, an empty object is returned.
      parameters:
        - schema:
            type: string
            minLength: 1
            description: Service identifier matching the installed manifest id.
          required: true
          description: Service identifier matching the installed manifest id.
          name: serviceId
          in: path
      responses:
        '200':
          description: Current service configuration.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceConfigurationResponse'
        '400':
          description: The serviceId path parameter was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: A bearer token was required but missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '500':
          description: The configuration could not be loaded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    ServiceConfigurationResponse:
      type: object
      properties:
        config:
          type: object
          additionalProperties:
            nullable: true
          description: Current configuration payload stored for the service.
      required:
        - config
      description: Wrapper for a service configuration document.
    ApiErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message returned by the API.
      required:
        - error
      description: Standard error envelope returned by the HTTP error middleware.

````