# seller

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/scraper/request:
    post:
      summary: seller
      deprecated: false
      description: ''
      tags:
        - Scraping API/amazon
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                actor:
                  type: string
                input:
                  type: object
                  properties:
                    type:
                      type: string
                    url:
                      type: string
                    zip_code:
                      type: string
                  required:
                    - type
                    - url
                    - zip_code
                  x-apidog-orders:
                    - type
                    - url
                    - zip_code
              required:
                - actor
                - input
              x-apidog-orders:
                - actor
                - input
            example:
              actor: scraper.amazon
              input:
                type: seller
                url: https://www.amazon.com/sp?seller=A2XZ7JICGUQ1CX
                zip_code: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
          headers: {}
          x-apidog-name: Success
        '201':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                message: task in progress
                taskId: a8af123c-0f81-477d-a2e7-c57ad18fe54a
          headers: {}
          x-apidog-name: Task In Progress
        '400':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                code: 20500
                message: scraping failed
          headers: {}
          x-apidog-name: Bad Request
      security:
        - apikey-header-x-api-token: []
      x-apidog-folder: Scraping API/amazon
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/745098/apis/api-12554368-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: bearer
      scheme: bearer
      description: Bearer token authentication using your Scrapeless API key
    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: []

```
