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

# Obter informações do usuário

> Busca os detalhes da conta do WhatsApp (JID, nome, nome comercial) de um ou mais números de telefone.



## OpenAPI

````yaml openapi.evolution-go.pt.json POST /user/info
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Camada de API do Pilot Status — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Autentique com o header
    `apikey` (sua chave `ps_` do Pilot Status) ou `Authorization: Bearer`.
    Endpoints de instância/sessão NÃO estão disponíveis na camada.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Chamada (voz)
  - name: Chat
  - name: Comunidade
  - name: Grupo
  - name: Etiqueta (label)
  - name: Mensagem
  - name: Newsletter / Canais
  - name: Envio (balanceado)
  - name: Usuário / Contatos
paths:
  /user/info:
    post:
      tags:
        - Usuário / Contatos
      summary: Obter informações do usuário
      description: >-
        Busca os detalhes da conta do WhatsApp (JID, nome, nome comercial) de um
        ou mais números de telefone.
      operationId: post__user_info
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number:
                  type: array
                  items:
                    type: string
                  description: Números de telefone em formato internacional para consultar.
                  example:
                    - '5511999999999'
                formatJid:
                  type: boolean
                  description: >-
                    Quando verdadeiro, retorna cada resultado indexado pelo JID
                    formatado.
                  example: true
              required:
                - number
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Whatsmeow GetUserInfo result wrapped in the Evolution GO
                  envelope.
                properties:
                  message:
                    type: string
                    description: Operation status message (always "success" on 200).
                  data:
                    type: object
                    description: UserCollection returned by the service.
                    properties:
                      Users:
                        type: object
                        description: >-
                          Map keyed by each queried user's JID; the value is
                          that user's info.
                        additionalProperties:
                          type: object
                          properties:
                            VerifiedName:
                              type:
                                - object
                                - 'null'
                              description: >-
                                Verified business name certificate; null for
                                non-business accounts.
                              properties:
                                Certificate:
                                  type:
                                    - object
                                    - 'null'
                                  description: Raw verified name certificate.
                                Details:
                                  type:
                                    - object
                                    - 'null'
                                  description: Decoded certificate details.
                            Status:
                              type: string
                              description: User's about/status text.
                            PictureID:
                              type: string
                              description: Current profile picture ID.
                            Devices:
                              type: array
                              description: The user's registered device JIDs.
                              items:
                                type: string
                            LID:
                              type:
                                - string
                                - 'null'
                              description: >-
                                Associated LID (local ID) JID, if resolvable;
                                otherwise null.
              example:
                message: success
                data:
                  Users:
                    5511999999999@s.whatsapp.net:
                      VerifiedName: null
                      Status: Hey there! I am using WhatsApp.
                      PictureID: '1661427238'
                      Devices:
                        - 5511999999999@s.whatsapp.net
                        - 5511999999999.0:12@s.whatsapp.net
                      LID: 274445566677889@lid
        default:
          description: Erro — erro do provedor ou da camada.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````