Retrieve
Retrieve chat details
client.chats.retrieve(ChatRetrieveParamsquery, RequestOptionsoptions?): Chat
get/v0/get-chat
Retrieve chat details including metadata, participants, and latest message
Parameters
Returns
import BeeperDesktop from '@beeper/desktop-api';
const client = new BeeperDesktop({
accessToken: 'My Access Token',
});
const chat = await client.chats.retrieve({ chatID: '!NCdzlIaMjZUmvmvyHU:beeper.com' });
console.log(chat.id);
{
"id": "!instagram_mattwondra:local-instagram.localhost",
"accountID": "local-instagram_ba_eRfQMmnSNy_p7Ih7HL7RduRpKFU",
"network": "Instagram",
"participants": {
"hasMore": false,
"items": [
{
"id": "@mattwondra:local-instagram.localhost",
"cannotMessage": false,
"email": "email",
"fullName": "Matt Wondra",
"imgURL": "imgURL",
"isSelf": false,
"phoneNumber": "phoneNumber",
"username": "mattwondra"
},
{
"id": "@batuhan:local-instagram.localhost",
"cannotMessage": false,
"email": "email",
"fullName": "Batuhan İçöz",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "batuhan"
}
],
"total": 2
},
"title": "Matt Wondra",
"type": "single",
"unreadCount": 0,
"isArchived": false,
"isMuted": false,
"isPinned": false,
"lastActivity": "2025-08-31T19:41:41.000Z",
"lastReadMessageSortKey": 449706228480,
"localChatID": "1229391"
}
Returns Examples
{
"id": "!instagram_mattwondra:local-instagram.localhost",
"accountID": "local-instagram_ba_eRfQMmnSNy_p7Ih7HL7RduRpKFU",
"network": "Instagram",
"participants": {
"hasMore": false,
"items": [
{
"id": "@mattwondra:local-instagram.localhost",
"cannotMessage": false,
"email": "email",
"fullName": "Matt Wondra",
"imgURL": "imgURL",
"isSelf": false,
"phoneNumber": "phoneNumber",
"username": "mattwondra"
},
{
"id": "@batuhan:local-instagram.localhost",
"cannotMessage": false,
"email": "email",
"fullName": "Batuhan İçöz",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "batuhan"
}
],
"total": 2
},
"title": "Matt Wondra",
"type": "single",
"unreadCount": 0,
"isArchived": false,
"isMuted": false,
"isPinned": false,
"lastActivity": "2025-08-31T19:41:41.000Z",
"lastReadMessageSortKey": 449706228480,
"localChatID": "1229391"
}