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

# Get All Resources

> Get all available resources (integrations, models, vector stores).

This endpoint returns everything in one response. Optionally filter
by resource type.

**Examples:**
```
GET /integrations/all
GET /integrations/all?resource_type=model
GET /integrations/all?resource_type=vector_store
```

**Response (all types):**
```json
{
  "integrations": [...],
  "models": [...],
  "vector_stores": [...],
  "summary": {
    "total_integrations": 11,
    "total_models": 33,
    "total_vector_stores": 17
  }
}
```



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/integrations/all
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/integrations/all:
    get:
      tags:
        - Integrations
      summary: Get All Resources
      description: |-
        Get all available resources (integrations, models, vector stores).

        This endpoint returns everything in one response. Optionally filter
        by resource type.

        **Examples:**
        ```
        GET /integrations/all
        GET /integrations/all?resource_type=model
        GET /integrations/all?resource_type=vector_store
        ```

        **Response (all types):**
        ```json
        {
          "integrations": [...],
          "models": [...],
          "vector_stores": [...],
          "summary": {
            "total_integrations": 11,
            "total_models": 33,
            "total_vector_stores": 17
          }
        }
        ```
      operationId: get_all_resources_api_v1_integrations_all_get
      parameters:
        - name: resource_type
          in: query
          required: false
          schema:
            anyOf:
              - enum:
                  - integration
                  - model
                  - vector_store
                type: string
              - type: 'null'
            description: Filter by resource type
            title: Resource Type
          description: Filter by resource type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````