# Solucoes certidaointernet

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/scraper/request:
    post:
      summary: Solucoes certidaointernet
      deprecated: false
      description: >-
        target url
        `https://solucoes.receita.fazenda.gov.br/Servicos/certidaointernet/pj/emitir`
      tags:
        - Scraping API/br sites
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                actor:
                  type: string
                input:
                  type: object
                  properties:
                    taxId:
                      type: string
                  required:
                    - taxId
                  x-apidog-orders:
                    - taxId
                proxy:
                  type: object
                  properties:
                    country:
                      type: string
                  required:
                    - country
                  x-apidog-orders:
                    - country
              required:
                - actor
                - input
                - proxy
              x-apidog-orders:
                - actor
                - input
                - proxy
            example:
              actor: scraper.solucoes.certidaointernet
              input:
                taxId: xxxxxxxx
              proxy:
                country: US
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
              examples:
                '1':
                  summary: Success
                  value:
                    taxId: xxxxxxxx
                    valid: true
                    createdAt: '2024-12-04T09:45:28.262187477Z'
                    updatedAt: '2024-12-04T09:45:28.262187532Z'
                    links:
                      - name: verificar.html
                        url: >-
                          scrapeless.data.solucoes-certidaointernet/xxxxxxxx/1733305528/verificar.html
                        success: true
                    pages:
                      - verificar.html
                    version: 1733305528
                    s3: https://storage-s3.scrapeless.com/scrapeless-scraper-data/
                '2':
                  summary: CNPJ does not exist
                  value:
                    taxId: '37335118000189'
                    valid: false
                    message: >-
                      O nmero do CNPJ no vlido. Verifique se o mesmo foi
                      digitado corretamente. (010-CON-FORM)
          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/br sites
      x-apidog-status: developing
      x-run-in-apidog: https://app.apidog.com/web/project/745098/apis/api-12160439-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: []

```
