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



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/transfers/
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/:
    get:
      tags:
        - api
      operationId: api_transfers_list
      parameters:
        - in: query
          name: asset_id
          schema:
            type: string
            format: uuid
        - in: query
          name: ordering
          schema:
            type: string
          description: Allowlisted ordering key; prefix with "-" for descending.
        - in: query
          name: origin
          schema:
            type: string
            enum:
              - all
              - system
              - user
          description: Defaults to "user". Pass "all" for debug/admin views.
        - in: query
          name: page
          schema:
            type: integer
        - in: query
          name: page_size
          schema:
            type: integer
        - in: query
          name: project
          schema:
            type: string
            format: uuid
        - in: query
          name: q
          schema:
            type: string
          description: Case-insensitive substring match on asset title.
        - in: query
          name: repository
          schema:
            type: string
            format: uuid
        - in: query
          name: status
          schema:
            type: string
          description: Comma-separated list, e.g. "pending,in_progress".
        - in: query
          name: type
          schema:
            type: string
            enum:
              - download
              - upload
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedTransferResponse'
          description: ''
      security:
        - cookieAuthCsrfExempt: []
components:
  schemas:
    PaginatedTransferResponse:
      type: object
      properties:
        count:
          type: integer
        next:
          type: string
          nullable: true
        previous:
          type: string
          nullable: true
        results:
          type: array
          items:
            $ref: '#/components/schemas/Transfer'
      required:
        - count
        - next
        - previous
        - results
    Transfer:
      type: object
      description: |-
        Read-only representation of a transfer.

        Includes denormalized labels (``project_name``, ``repository_name``,
        ``asset_content_title``) so the client can render one row per
        transfer without extra round-trips. Transfers are visible only to
        the user who initiated them (GET /transfers/ lists the caller's own
        transfers), and the labels reflect what the initiator could see at
        initiation time — they remain readable even if the underlying
        access grant is later revoked. ``project_*`` and ``repository_*``
        fields are nullable — an asset may have no owning project, and its
        storage allocation may have been detached — clients MUST handle
        null.
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        asset_content_id:
          type: string
          format: uuid
          readOnly: true
        type:
          allOf:
            - $ref: '#/components/schemas/TransferTypeEnum'
          readOnly: true
        status:
          allOf:
            - $ref: '#/components/schemas/TransferStatusEnum'
          readOnly: true
        origin:
          allOf:
            - $ref: '#/components/schemas/TransferOriginEnum'
          readOnly: true
        bytes_transferred:
          type: integer
          readOnly: true
        expires_at:
          type: string
          format: date-time
          readOnly: true
        initiated_by_id:
          type: string
          format: uuid
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        asset_content_title:
          type: string
          readOnly: true
        project_id:
          type: string
          format: uuid
          readOnly: true
        project_name:
          type: string
          readOnly: true
        repository_id:
          type: string
          format: uuid
          readOnly: true
        repository_name:
          type: string
          readOnly: true
        total_bytes:
          type: integer
          readOnly: true
          default: 0
        direction_supports_progress:
          type: boolean
          readOnly: true
        executor:
          allOf:
            - $ref: '#/components/schemas/ExecutorEnum'
          readOnly: true
        delivery_target:
          readOnly: true
        claimed_by_endpoint_id:
          type: string
          format: uuid
          readOnly: true
          nullable: true
        claimed_endpoint_name:
          type: string
          readOnly: true
        lease_expires_at:
          type: string
          format: date-time
          readOnly: true
          nullable: true
      required:
        - asset_content_id
        - asset_content_title
        - bytes_transferred
        - claimed_by_endpoint_id
        - claimed_endpoint_name
        - created_at
        - delivery_target
        - direction_supports_progress
        - executor
        - expires_at
        - id
        - initiated_by_id
        - lease_expires_at
        - origin
        - project_id
        - project_name
        - repository_id
        - repository_name
        - status
        - total_bytes
        - type
        - updated_at
    TransferTypeEnum:
      enum:
        - upload
        - download
      type: string
      description: |-
        * `upload` - Upload
        * `download` - Download
    TransferStatusEnum:
      enum:
        - pending
        - claimed
        - in_progress
        - completed
        - failed
        - expired
      type: string
      description: |-
        * `pending` - Pending
        * `claimed` - Claimed
        * `in_progress` - In Progress
        * `completed` - Completed
        * `failed` - Failed
        * `expired` - Expired
    TransferOriginEnum:
      enum:
        - user
        - system
      type: string
      description: |-
        * `user` - User
        * `system` - System
    ExecutorEnum:
      enum:
        - browser
        - client
      type: string
      description: |-
        * `browser` - Browser
        * `client` - Client (SDK endpoint)

````