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

# Get import status

> Returns the current status and progress of an import job.



## OpenAPI

````yaml https://folksbase.onrender.com/api/openapi.json get /api/imports/{id}/status
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/imports/{id}/status:
    get:
      tags:
        - Imports
      summary: Get import status
      description: Returns the current status and progress of an import job.
      operationId: getApiImportsByIdStatus
      parameters:
        - in: path
          name: id
          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)$
          required: true
      responses:
        '200':
          description: Import status
          content:
            application/json:
              schema:
                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)$
                  status:
                    type: string
                  total_rows:
                    anyOf:
                      - type: number
                      - type: 'null'
                  processed_rows:
                    anyOf:
                      - type: number
                      - type: 'null'
                  updated_rows:
                    anyOf:
                      - type: number
                      - type: 'null'
                  failed_rows:
                    anyOf:
                      - type: number
                      - type: 'null'
                  completed_at:
                    anyOf:
                      - type: string
                      - type: 'null'
                  created_at:
                    type: string
                  filename:
                    type: string
                  summary:
                    anyOf:
                      - type: string
                      - type: 'null'
                  blob_url:
                    anyOf:
                      - type: string
                      - type: 'null'
                required:
                  - id
                  - status
                  - total_rows
                  - processed_rows
                  - updated_rows
                  - failed_rows
                  - completed_at
                  - created_at
                  - filename
                  - summary
                  - blob_url
        '404':
          description: Import not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  details: {}
                required:
                  - code
                  - message
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Supabase JWT token from Authorization header

````