Get chat info
curl --request GET \
--url https://api.wsapi.chat/chats/{chatId} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Instance-Id: <x-instance-id>'import requests
url = "https://api.wsapi.chat/chats/{chatId}"
headers = {
"X-Instance-Id": "<x-instance-id>",
"X-Api-Key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Instance-Id': '<x-instance-id>', 'X-Api-Key': '<api-key>'}
};
fetch('https://api.wsapi.chat/chats/{chatId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://api.wsapi.chat/chats/{chatId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("X-Instance-Id", "<x-instance-id>");
request.AddHeader("X-Api-Key", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"id": "1234567890@s.whatsapp.net",
"lid": "222424242@lid",
"isGroup": true,
"isArchived": true,
"isPinned": true,
"isMuted": true,
"muteEndTime": "2023-11-07T05:31:56Z",
"pushName": "<string>",
"businessName": "<string>",
"fullName": "<string>",
"lastActivity": "2023-11-07T05:31:56Z"
}{
"status": 401,
"detail": "unauthorized"
}{
"status": 404,
"detail": "not found"
}{
"status": 403,
"detail": "device not paired"
}{
"status": 503,
"detail": "instance not available"
}Chats
Get chat info
Returns details for a single chat, enriched with contact info and chat settings.
GET
/
chats
/
{chatId}
Get chat info
curl --request GET \
--url https://api.wsapi.chat/chats/{chatId} \
--header 'X-Api-Key: <api-key>' \
--header 'X-Instance-Id: <x-instance-id>'import requests
url = "https://api.wsapi.chat/chats/{chatId}"
headers = {
"X-Instance-Id": "<x-instance-id>",
"X-Api-Key": "<api-key>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'X-Instance-Id': '<x-instance-id>', 'X-Api-Key': '<api-key>'}
};
fetch('https://api.wsapi.chat/chats/{chatId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));using RestSharp;
var options = new RestClientOptions("https://api.wsapi.chat/chats/{chatId}");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("X-Instance-Id", "<x-instance-id>");
request.AddHeader("X-Api-Key", "<api-key>");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
{
"id": "1234567890@s.whatsapp.net",
"lid": "222424242@lid",
"isGroup": true,
"isArchived": true,
"isPinned": true,
"isMuted": true,
"muteEndTime": "2023-11-07T05:31:56Z",
"pushName": "<string>",
"businessName": "<string>",
"fullName": "<string>",
"lastActivity": "2023-11-07T05:31:56Z"
}{
"status": 401,
"detail": "unauthorized"
}{
"status": 404,
"detail": "not found"
}{
"status": 403,
"detail": "device not paired"
}{
"status": 503,
"detail": "instance not available"
}Authorizations
Instance or customer-level API key. Either the instance's own API key or the customer's API key is accepted. Must be paired with the X-Instance-Id header to identify the target instance.
Headers
The ID of the WhatsApp instance to use
Path Parameters
Chat JID (user or group)
Response
Chat info
Chat JID
Example:
"1234567890@s.whatsapp.net"
LID-based JID for the chat (omitted for groups or if unknown)
Example:
"222424242@lid"
When the mute expires (omitted if not muted)
Contact push name (omitted if unknown)
Business name (omitted if not a business)
Full name from contacts (omitted if unknown)
Timestamp of last activity (omitted if unknown)
⌘I