# ExtractStatusResponse

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ExtractStatusResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
          x-apidog-orders: []
          properties: {}
        status:
          type: string
          enum:
            - completed
            - processing
            - failed
            - cancelled
          description: The current status of the extract job
      x-apidog-orders:
        - success
        - data
        - status
      x-apidog-folder: ''
  securitySchemes:
    apikey-header-x-api-token:
      type: apiKey
      in: header
      name: x-api-token
servers:
  - url: https://api.scrapeless.com
    description: Prod Env
security:
  - apikey-header-x-api-token: []

```
