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

# List exports

> Returns a paginated list of exports for the workspace.



## OpenAPI

````yaml https://folksbase.onrender.com/api/openapi.json get /api/exports
openapi: 3.1.0
info:
  title: folksbase API
  description: >-
    Contact management API for folksbase. Upload CSVs, manage contacts and tags,
    export data.
  version: 1.0.0
servers:
  - url: https://folksbase.onrender.com
    description: Production
  - url: http://localhost:3001
    description: Local development
security:
  - bearerAuth: []
paths:
  /api/exports:
    get:
      tags:
        - Exports
      summary: List exports
      description: Returns a paginated list of exports for the workspace.
      operationId: getApiExports
      parameters:
        - in: query
          name: cursor
          schema:
            type: string
            format: uuid
            pattern: >-
              ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
        - in: query
          name: limit
          schema:
            type: integer
            minimum: 1
            maximum: 100
      responses:
        '200':
          description: Paginated export list
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        workspace_id:
                          type: string
                          format: uuid
                          pattern: >-
                            ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
                        filename:
                          type: string
                        status:
                          type: string
                        total_rows:
                          anyOf:
                            - type: number
                            - type: 'null'
                        processed_rows:
                          anyOf:
                            - type: number
                            - type: 'null'
                        blob_url:
                          anyOf:
                            - type: string
                            - type: 'null'
                        tag_ids:
                          anyOf:
                            - type: array
                              items:
                                type: string
                            - type: 'null'
                        error_message:
                          anyOf:
                            - type: string
                            - type: 'null'
                        created_at:
                          type: string
                        completed_at:
                          anyOf:
                            - type: string
                            - type: 'null'
                      required:
                        - id
                        - workspace_id
                        - filename
                        - status
                        - total_rows
                        - processed_rows
                        - blob_url
                        - tag_ids
                        - error_message
                        - created_at
                        - completed_at
                  nextCursor:
                    anyOf:
                      - type: string
                      - type: 'null'
                  total:
                    type: number
                required:
                  - data
                  - nextCursor
                  - total
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Supabase JWT token from Authorization header

````