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

# Get Connection



## OpenAPI

````yaml /api-reference/openapi.json get /v1/openapi-connections/{connection_id}
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/openapi-connections/{connection_id}:
    get:
      tags:
        - v1
        - protected
        - openapi-connections
      summary: Get Connection
      operationId: get_connection_v1_openapi_connections__connection_id__get
      parameters:
        - in: path
          name: connection_id
          required: true
          schema:
            format: uuid
            title: Connection Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenAPIConnectionResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    OpenAPIConnectionResponse:
      properties:
        auth_config_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Auth Config Id
        available_tools:
          default: []
          items:
            additionalProperties: true
            type: object
          title: Available Tools
          type: array
        base_url:
          title: Base Url
          type: string
        created_at:
          title: Created At
        custom_headers:
          anyOf:
            - items:
                $ref: '#/components/schemas/HeaderOutput'
              type: array
            - type: 'null'
          title: Custom Headers
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        id:
          format: uuid
          title: Id
          type: string
        name:
          title: Name
          type: string
        spec_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Spec Url
        status:
          title: Status
          type: string
        updated_at:
          title: Updated At
      required:
        - id
        - name
        - base_url
        - status
        - created_at
        - updated_at
      title: OpenAPIConnectionResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    HeaderOutput:
      description: Header metadata returned in API responses (secret values are masked).
      properties:
        name:
          title: Name
          type: string
        secret:
          title: Secret
          type: boolean
        value:
          anyOf:
            - type: string
            - type: 'null'
          title: Value
      required:
        - name
        - secret
      title: HeaderOutput
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````