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

# List Imports



## OpenAPI

````yaml get /api/v1/imports
openapi: 3.0.1
info:
  title: API V1
  version: v1
servers:
  - url: https://fuse.flatirons.com
    variables:
      defaultHost:
        default: www.example.com
security: []
paths:
  /api/v1/imports:
    get:
      tags:
        - imports
      summary: List Imports
      parameters:
        - name: page
          in: query
          description: The page number for pagination
          schema:
            type: integer
        - name: per_page
          in: query
          description: Number of records per page, maximum of 100
          schema:
            type: integer
        - name: status
          in: query
          schema:
            type: string
      responses:
        '200':
          description: filtered imports found
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: A paginated list of imports
                    items:
                      type: object
                      properties:
                        slug:
                          type: string
                          format: uuid
                          description: The slug of the import
                        row_count:
                          type: integer
                          description: The number of rows in the import
                        created_at:
                          type: string
                          format: date-time
                          description: The timestamp of creation for the import
                        updated_at:
                          type: string
                          format: date-time
                          description: The timestamp of last update for the import
                        status:
                          type: string
                          enum:
                            - created
                            - submitting
                            - submitted
                            - completed
                          description: The status of the import
                        template:
                          type: object
                          properties:
                            name:
                              type: string
                            slug:
                              type: string
                              format: uuid
                          required:
                            - name
                            - slug
                        metadata:
                          type: object
                          description: Additional metadata for the import
                      required:
                        - slug
                        - row_count
                        - created_at
                        - updated_at
                        - status
                required:
                  - data
        '401':
          description: unauthorized
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````