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

# List Deliverables

> List all files for the current user — the unified 'My Files' view.

Returns approved and delivered items with full task context, artifact metadata,
and download capability. This replaces the need to navigate back to individual
tasks to access purchased content.



## OpenAPI

````yaml /openapi.json get /api/v1/deliverables
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/deliverables:
    get:
      tags:
        - Files
      summary: List Deliverables
      description: >-
        List all files for the current user — the unified 'My Files' view.


        Returns approved and delivered items with full task context, artifact
        metadata,

        and download capability. This replaces the need to navigate back to
        individual

        tasks to access purchased content.
      operationId: list_deliverables_api_v1_deliverables_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter by delivery status: delivered, approved'
            title: Status
          description: 'Filter by delivery status: delivered, approved'
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by task category
            title: Category
          description: Filter by task category
        - name: sort
          in: query
          required: false
          schema:
            type: string
            description: 'Sort order: newest, oldest, rating'
            default: newest
            title: Sort
          description: 'Sort order: newest, oldest, rating'
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 50
            minimum: 1
            description: Items per page
            default: 20
            title: Limit
          description: Items per page
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Pagination offset
            default: 0
            title: Offset
          description: Pagination offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````