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

# Get apitransfersfilters

> GET /api/transfers/filters/ — Project + Repository options for the filter popover.

Derived from the same base queryset as ``GET /api/transfers/`` so
every option surfaced here yields at least one row in the default
list. Null project/repository rows are excluded.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/transfers/filters/
openapi: 3.0.3
info:
  title: Console API
  version: 1.0.0
  description: Central control plane API for the Dataerai platform.
servers:
  - url: https://{server}
    description: Your Dataerai deployment (the API is served under /api)
    variables:
      server:
        default: your-deployment.dataerai.com
        description: Host of your Dataerai deployment
security: []
paths:
  /api/transfers/filters/:
    get:
      tags:
        - api
      description: >-
        GET /api/transfers/filters/ — Project + Repository options for the
        filter popover.


        Derived from the same base queryset as ``GET /api/transfers/`` so

        every option surfaced here yields at least one row in the default

        list. Null project/repository rows are excluded.
      operationId: api_transfers_filters_retrieve
      parameters:
        - in: query
          name: origin
          schema:
            type: string
            enum:
              - all
              - system
              - user
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransferFiltersResponse'
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components:
  schemas:
    TransferFiltersResponse:
      type: object
      properties:
        projects:
          type: array
          items:
            $ref: '#/components/schemas/TransferFilterProject'
        repositories:
          type: array
          items:
            $ref: '#/components/schemas/TransferFilterRepository'
      required:
        - projects
        - repositories
    TransferFilterProject:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
      required:
        - id
        - name
    TransferFilterRepository:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
      required:
        - id
        - name

````