> ## 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.

# List Provider Configs With Instances

> List provider configurations with their model instances.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/provider-configs/with-instances
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/provider-configs/with-instances:
    get:
      tags:
        - v1
        - protected
        - provider-configs
      summary: List Provider Configs With Instances
      description: List provider configurations with their model instances.
      operationId: >-
        list_provider_configs_with_instances_v1_provider_configs_with_instances_get
      parameters:
        - in: query
          name: provider_spec_id
          required: false
          schema:
            anyOf:
              - format: uuid
                type: string
              - type: 'null'
            title: Provider Spec Id
        - in: query
          name: is_active
          required: false
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            title: Is Active
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ProviderConfigResponse'
                title: >-
                  Response List Provider Configs With Instances V1 Provider
                  Configs With Instances Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    ProviderConfigResponse:
      properties:
        created_at:
          title: Created At
          type: string
        created_by:
          title: Created By
          type: string
        endpoint_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Endpoint Url
        id:
          title: Id
          type: string
        is_active:
          title: Is Active
          type: boolean
        is_public:
          title: Is Public
          type: boolean
        model_instance_ids:
          default: []
          items:
            type: string
          title: Model Instance Ids
          type: array
        name:
          title: Name
          type: string
        provider_spec_id:
          title: Provider Spec Id
          type: string
        provider_spec_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider Spec Key
        provider_spec_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider Spec Name
        updated_at:
          title: Updated At
          type: string
        workspace_id:
          title: Workspace Id
          type: string
      required:
        - id
        - provider_spec_id
        - name
        - endpoint_url
        - workspace_id
        - created_by
        - is_active
        - is_public
        - created_at
        - updated_at
      title: ProviderConfigResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      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

````