# CrawlErrorsResponseObj

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    CrawlErrorsResponseObj:
      type: object
      properties:
        errors:
          type: array
          description: Errored scrape jobs and error details
          items:
            type: object
            properties:
              id:
                type: string
              timestamp:
                type: string
                description: ISO timestamp of failure
                nullable: true
              url:
                type: string
                description: Scraped URL
              error:
                type: string
                description: Error message
            x-apidog-orders:
              - id
              - timestamp
              - url
              - error
        robotsBlocked:
          type: array
          description: >-
            List of URLs that were attempted in scraping but were blocked by
            robots.txt
          items:
            type: string
      x-apidog-orders:
        - errors
        - robotsBlocked
      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: []

```
