# BatchScrapeResponseObj

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    BatchScrapeResponseObj:
      type: object
      properties:
        success:
          type: boolean
        id:
          type: string
        invalidURLs:
          type: array
          items:
            type: string
          description: >-
            If ignoreInvalidURLs is true, this is an array containing the
            invalid URLs that were specified in the request. If there were no
            invalid URLs, this will be an empty array. If ignoreInvalidURLs is
            false, this field will be undefined.
          nullable: true
      x-apidog-orders:
        - success
        - id
        - invalidURLs
      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: []

```
