WhatsApp Contact & Group Fetching

Fetching Contact & Group Details from WhatsApp Connected Number

This API allows you to fetch contact and groups of your Connected WhatsApp Number and this API is supported only in WhatsApp Web Automation Channel

Works only with WhatsApp Web Automation Channel and this feature is not stable, use at your own risk

WhatsApp Contact & Group Fetching API

POST https://pickyassist.com/app/api/v2/fetch-contacts

API to fetch WhatsApp Contacts & Groups

Request Body

NameTypeDescription

token

string

Your API Token for authentication

application

number

10 = WhatsApp Web Automation

[
   {
      "number":"9194055074-16099455",
      "name":"API Group",
      "type":"group"
   },
   {
      "number":"9194055074-16161719",
      "name":"NEW SUBBB",
      "type":"group"
   },
   {
      "number":"1809723725",
      "name":"Joan Miranda",
      "type":"contact"
   },
   {
      "number":"2347076688",
      "name":"P.Tosin",
      "type":"contact"
   },
   {
      "number":"2347000485",
      "name":"Geraldox Gerry",
      "type":"contact"
   }
]

Sample Request Body JSON

{
    	"token": "e16e32e750cf865fae95752a9f1d0898cb",
    	"application": "10"
 }

Sample Response

[
   {
      "number":"9194055074-16099455",
      "name":"API Group",
      "type":"group"
   },
   {
      "number":"9194055074-16161719",
      "name":"NEW SUBBB",
      "type":"group"
   },
   {
      "number":"1809723725",
      "name":"Joan Miranda",
      "type":"contact"
   },
   {
      "number":"2347076688",
      "name":"P.Tosin",
      "type":"contact"
   },
   {
      "number":"2347000485",
      "name":"Geraldox Gerry",
      "type":"contact"
   }
]

Response Variables

Variable Name

Type

Description

number

String

WhatsApp Number or WhatsApp Group ID if the type=group

name

String

Name of the Contact / Group

type

String

contact = It's a contact

group = It's a group

Last updated