> ## Documentation Index
> Fetch the complete documentation index at: https://codeplugtech.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Check Conversion Status

> Check the status of a document conversion using the document ID.



## OpenAPI

````yaml api-reference/openapi.json post /status
openapi: 3.0.3
info:
  title: Bank Statement Converter API
  description: API for converting bank statement PDFs to other formats.
  version: 1.0.0
servers:
  - url: https://api.bankstmtconverter.com
    description: Production server
security: []
paths:
  /status:
    post:
      summary: Check Conversion Status
      description: Check the status of a document conversion using the document ID.
      operationId: checkConversionStatus
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                doc_id:
                  type: string
                  description: >-
                    Document ID returned from the conversion request.
                    **Required**
                  example: c1fb3cb2ecb646deb50a54896ba05c59
              required:
                - doc_id
      responses:
        '200':
          description: Status retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  doc_id:
                    type: string
                    description: Document ID of the conversion.
                    example: c1fb3cb2ecb646deb50a54896ba05c59
                  status:
                    type: string
                    description: Current status of the conversion.
                    enum:
                      - PENDING
                      - PROCESSING
                      - COMPLETED
                      - FAILED
                    example: COMPLETED
                  url:
                    type: string
                    description: Conversion file url
                    example: >-
                      https://bankstmtconverter/Api/20260124115055271638.xlsx?X-Amz-Algorithm=AW-HMAC-SHA25588&...
        '400':
          description: Bad Request - Invalid input data.
        '401':
          description: Unauthorized - Invalid API key.
        '404':
          description: Document ID not found.
        '500':
          description: Internal Server Error.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Enter your API Bearer token

````