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

# Contact details

> Returns a contact's status (about text) and picture id.



## OpenAPI

````yaml /en/api-reference/openapi.json get /contacts/info
openapi: 3.1.0
info:
  title: Zapfy API
  description: >-
    Multi-tenant WhatsApp API. Send messages and manage webhooks through a
    single surface.
  version: 1.0.0
servers:
  - url: https://api.zapfy.io/v1
security:
  - accountToken: []
paths:
  /contacts/info:
    get:
      tags:
        - Contacts
      summary: Contact details
      description: Returns a contact's status (about text) and picture id.
      parameters:
        - name: phone
          in: query
          required: true
          schema:
            type: string
            example: '5511999998888'
          description: >-
            Contact phone in E.164 (e.g. 5511999998888), as returned by
            `/contacts/check` or `GET /v1/contacts`.
      responses:
        '200':
          $ref: '#/components/responses/ContactDetail'
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '502':
          $ref: '#/components/responses/Error'
      security:
        - instanceToken: []
components:
  responses:
    ContactDetail:
      description: Contact details.
      content:
        application/json:
          schema:
            type: object
            properties:
              data:
                $ref: '#/components/schemas/ContactInfo'
    Error:
      description: Error.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Instance not found
  schemas:
    ContactInfo:
      type: object
      properties:
        status:
          type: string
          description: Contact's status (about text).
          example: Disponível
        pictureId:
          type: string
          description: Id of the current profile picture.
          example: '1580000000'
  securitySchemes:
    accountToken:
      type: http
      scheme: bearer
      description: Account token (`zpfy_acct_...`) — manages instances and webhooks.
    instanceToken:
      type: http
      scheme: bearer
      description: Instance token (`zpfy_inst_...`) — sends messages.

````