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

# Import Records



## OpenAPI

````yaml get /api/v1/imports/{import_slug}/records
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/{import_slug}/records:
    get:
      tags:
        - Records
      summary: Import Records
      parameters:
        - name: import_slug
          in: path
          required: true
          description: Import Slug
          schema:
            type: string
        - 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
      responses:
        '200':
          description: A paginated list of records for a particular import
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        slug:
                          type: string
                          format: uuid
                          description: The slug of the record
                        data:
                          type: object
                          additionalProperties: {}
                          description: An object containing record data
                        created_at:
                          type: string
                          format: date-time
                          description: The timestamp of creation for the record
                        updated_at:
                          type: string
                          format: date-time
                          description: The timestamp of last update for the record
                        sort:
                          type: integer
                          description: The sort order
                      required:
                        - slug
                        - data
                        - created_at
                        - updated_at
                        - sort
                  metadata:
                    type: object
                    description: Metadata associated with the import session
                required:
                  - data
                  - metadata
        '401':
          description: unauthorized
        '404':
          description: import not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````