Início
Instances
Settings
Send Message
Chat Controller
Profile Settings
Group Controller
- POSTCreate Group
- POSTUpdate Group Picture
- POSTUpdate Group Subject
- POSTUpdate Group Description
- GETFetch Invite Code
- POSTRevoke Invite Code
- POSTSend Group Invite
- GETFind Group by Invite Code
- GETFind Group by JID
- GETFetch All Groups
- GETFind Group Members
- POSTUpdate Group Members
- POSTUpdate Group Setting
- POSTToggle Ephemeral
- DELLeave Group
Websocket
Chat Controller
Check is WhatsApp
Check if numbers are on WhatsApp
POST
/
chat
/
whatsappNumbers
/
{instance}
Copy
curl --request POST \
--url https://api.l2msg.com/whatsapp/chat/whatsappNumbers/{instance} \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '{
"numbers": [
"<string>"
]
}'
Copy
[
{
"exists": true,
"jid": "553198296801@s.whatsapp.net",
"number": "553198296801"
}
]
Authorizations
Your authorization key header
Path Parameters
Name of the instance
Body
application/json
Response
200 - application/json
Ok
Array of objects representing WhatsApp account existence information.
Copy
curl --request POST \
--url https://api.l2msg.com/whatsapp/chat/whatsappNumbers/{instance} \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '{
"numbers": [
"<string>"
]
}'
Copy
[
{
"exists": true,
"jid": "553198296801@s.whatsapp.net",
"number": "553198296801"
}
]
Assistant
Responses are generated using AI and may contain mistakes.