> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sherlocker.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Empregos

> Retorna historico completo de vinculos empregaticios com empregador, cargo e datas de admissao/desligamento.



## OpenAPI

````yaml /openapi/pessoas.json get /pessoas/cpf/{cpf}/empregos
openapi: 3.0.0
info:
  title: Sherlocker Pessoas API
  description: >-
    Perfil completo de uma pessoa: identidade, localizacao, contatos, rede
    familiar, beneficios, dividas, patrimonio, processos e historico
    profissional. Ponto de entrada principal para investigacoes a partir de CPF
    ou telefone.
  version: '2.0'
servers:
  - url: https://221b-api.sherlocker.com.br/api/v1
security:
  - tokenAuth: []
paths:
  /pessoas/cpf/{cpf}/empregos:
    get:
      tags:
        - Pessoas
      summary: Empregos
      description: >-
        Retorna historico completo de vinculos empregaticios com empregador,
        cargo e datas de admissao/desligamento.
      operationId: getEmpregosByCpfPessoas
      parameters:
        - name: cpf
          in: path
          required: true
          description: CPF (11 digitos)
          schema:
            type: string
            example: '12345678901'
      responses:
        '200':
          description: Historico de empregos
          content:
            application/json:
              schema:
                type: object
                properties:
                  empregos:
                    type: array
                    items:
                      $ref: '#/components/schemas/Emprego'
              example:
                empregos:
                  - nome_empregador: Silva Comércio LTDA
                    cargo: Gerente Comercial
                    status: ativo
                    data_admissao: '2019-01-15'
                    data_desligamento: null
                    remuneracao:
                      valor: 5000
                      estimativa_minima: 6072
                      estimativa_maxima: 15180
                      faixa: 4 a 10 SM
                    vinculo:
                      nivel: Funcionário
                      setor:
                        tipo: Privado
                        codigo: '4729199'
                        descricao: Comércio varejista de outros produtos
                    contatos:
                      telefone:
                        ddi: '55'
                        ddd: '11'
                        numero: '999998888'
                        numero_completo: '5511999998888'
                        estado: São Paulo
                        operadora: Vivo
                      email:
                        email: joao@silva.com.br
                        dominio: silva.com.br
                        corporativo: true
                    documento_empregador: 12.345.678/0001-99
                    tipo_documento_empregador: CNPJ
        '400':
          description: Parametro invalido
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Token ausente ou invalido
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    Emprego:
      type: object
      properties:
        cnpj_empregador:
          type: string
        nome_empregador:
          type: string
        cargo:
          type: string
        status:
          type: string
          description: ativo ou inativo
        data_admissao:
          type: string
        data_desligamento:
          type: string
          nullable: true
        remuneracao:
          type: object
          nullable: true
          properties:
            valor:
              type: number
              nullable: true
            estimativa_minima:
              type: number
              nullable: true
            estimativa_maxima:
              type: number
              nullable: true
            faixa:
              type: string
              nullable: true
        vinculo:
          type: object
          nullable: true
          properties:
            nivel:
              type: string
              nullable: true
            setor:
              type: object
              nullable: true
              properties:
                tipo:
                  type: string
                  nullable: true
                codigo:
                  type: string
                  nullable: true
                descricao:
                  type: string
                  nullable: true
        contatos:
          type: object
          nullable: true
          properties:
            telefone:
              $ref: '#/components/schemas/Telefone'
            email:
              $ref: '#/components/schemas/Email'
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        erro:
          type: object
          properties:
            codigo:
              type: string
              description: 'Codigo do erro (ex: VALIDATION_ERROR, NOT_FOUND, UNAUTHORIZED)'
              example: VALIDATION_ERROR
            mensagem:
              type: string
              description: Mensagem descritiva do erro
              example: CPF invalido
    Telefone:
      type: object
      properties:
        ddi:
          type: string
        ddd:
          type: string
        numero:
          type: string
        numero_completo:
          type: string
        estado:
          type: string
        operadora:
          type: string
        tem_whatsapp:
          type: boolean
    Email:
      type: object
      properties:
        email:
          type: string
        dominio:
          type: string
        corporativo:
          type: boolean
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: query
      name: token

````