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

# Retrieves a specific import

> Get details of a specific import by ID.



## OpenAPI

````yaml get /api/v1/imports/{import_slug}
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}:
    get:
      tags:
        - imports
      summary: Retrieves a specific import
      description: Get details of a specific import by ID.
      parameters:
        - name: import_slug
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Import details retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  slug:
                    type: string
                  row_count:
                    type: integer
                  created_at:
                    type: string
                    format: date-time
                  updated_at:
                    type: string
                    format: date-time
                  status:
                    type: string
                    enum:
                      - created
                      - submitting
                      - submitted
                      - completed
                  template:
                    type: object
                    properties:
                      name:
                        type: string
                      slug:
                        type: string
                  metadata:
                    type: object
                    nullable: true
                required:
                  - slug
                  - row_count
                  - created_at
                  - updated_at
                  - status
        '401':
          description: unauthorized
        '404':
          description: Import not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````