Get Contact About Info

Supported & Tested

Return the contact about/info text when it is available through the current engine and privacy settings allow access.

POSThttps://api.waplix.io/api/v1/contacts/about
Authentication
Authorization: Bearer YOUR_API_KEY
Parameters Specification
instance_id
stringReq

Required Waplix instance id

number
stringReq

Required phone number or contact id

Usage Notes
Verified on production instance 29854.
Request Payload Example
Request
curl -X POST "https://api.waplix.io/api/v1/api/v1/contacts/about" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "instance_id": "demo_instance",
  "number": "15551234567"
}'
Success Response
Response · 200 OK
{
  "success": true,
  "data": {
    "input_contact_id": "15551234567@s.whatsapp.net",
    "phone_jid": "15551234567@s.whatsapp.net",
    "lid_jid": null,
    "resolved_jid": "15551234567@s.whatsapp.net",
    "display_id": "15551234567@s.whatsapp.net",
    "resolution_source": "stored_chat_id",
    "phone_number": "15551234567",
    "source_row": {
      "id": 1001,
      "instance_id": "demo_instance",
      "direction": "incoming",
      "from_number": "15551234567@s.whatsapp.net",
      "to_number": "12025550102",
      "message_type": "text",
      "message": "Hello from Waplix API docs.",
      "media_url": null,
      "whatsapp_message_id": "MSG_DEMO_001",
      "status": "received",
      "created_at": "2026-06-23T12:00:00.000Z"
    },
    "about": null
  }
}
Was this page helpful?