> ## 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.

# List contacts

> Returns all contacts stored for the connected number.



## OpenAPI

````yaml openapi.evolution-go.json GET /user/contacts
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key) or `Authorization: Bearer`.
    Instance/session endpoints are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Call (voice)
  - name: Chat
  - name: Community
  - name: Group
  - name: Label
  - name: Message
  - name: Newsletter / Channels
  - name: Send (load-balanced)
  - name: User / Contacts
paths:
  /user/contacts:
    get:
      tags:
        - User / Contacts
      summary: List contacts
      description: Returns all contacts stored for the connected number.
      operationId: get__user_contacts
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: All cached contacts wrapped in the Evolution GO envelope.
                properties:
                  message:
                    type: string
                    description: Operation status message.
                  data:
                    type: array
                    description: List of the session's cached contacts.
                    items:
                      type: object
                      properties:
                        Jid:
                          type: string
                          description: Contact's JID.
                        Found:
                          type: boolean
                          description: Whether the contact was found in the local store.
                        FirstName:
                          type: string
                          description: Contact's first name (from address book).
                        FullName:
                          type: string
                          description: Contact's full name (from address book).
                        PushName:
                          type: string
                          description: Contact's WhatsApp push/notify name.
                        BusinessName:
                          type: string
                          description: >-
                            Verified business name, if the contact is a
                            business.
              example:
                message: success
                data:
                  - Jid: 5511999999999@s.whatsapp.net
                    Found: true
                    FirstName: Maria
                    FullName: Maria Silva
                    PushName: Maria
                    BusinessName: ''
                  - Jid: 5511888888888@s.whatsapp.net
                    Found: true
                    FirstName: ''
                    FullName: ''
                    PushName: João Pizzaria
                    BusinessName: João Pizzaria LTDA
        default:
          description: Error — provider or layer error.
          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>`.

````