---
title: "[BETA] read cached presence for a chat without subscribing"
method: POST
path: "/instances/{id}/client/action/get-chat-presence-snapshot"
tags: ["client"]
---

# [BETA] read cached presence for a chat without subscribing

`POST /instances/{id}/client/action/get-chat-presence-snapshot`

Returns the locally cached presence for a chat without triggering a new subscription. Returns null if the chat has never been subscribed (via get-chat-presence) during the current session. Use get-chat-presence instead if you want to enable continuous tracking. Note: This endpoint is currently in beta and may change without notice.

## Path parameters

- `id` integer, required

## Request body

- object
  - `chatId` string, required — Chat ID <countrycode_short><usernumber>@c.us or @g.us for groups

## Response `200`

Cached presence (may be null)

- object
  - `data` object
    - `presence` ChatPresence — Presence state of a chat. Returned by get-chat-presence action and included in presence_update webhook events. Null fields carry semantic meaning — read the field descriptions before interpreting them.
      - `id` string — Serialized chat id this presence refers to.
      - `isGroup` boolean — Whether this presence refers to a group chat.
      - `isOnline` boolean — Whether the contact (or any group member) is currently online. For groups this is an aggregate across all members.
      - `chatstate` 'available' | 'typing' | 'recording_audio' | 'unavailable', nullable — Current typing/recording state. Null for group chats — use typingParticipants and recordingParticipants instead. The service auto-reverts typing/recording to available/unavailable after ~25 seconds of inactivity, which produces a second presence_update event.
      - `lastSeen` integer, nullable — Unix timestamp (seconds) of when the contact was last seen. Only populated when chatstate is 'unavailable' AND deny is false. Null in all other cases — do not interpret null as 'never seen'.
      - `deny` boolean — True when the peer has explicitly blocked last-seen visibility for this account. Typing/online state may still be visible — deny only affects lastSeen.
      - `typingParticipants` string[] — Group chats only. Serialized JIDs of members currently typing. Empty for 1:1 chats.
      - `recordingParticipants` string[] — Group chats only. Serialized JIDs of members currently recording audio. Empty for 1:1 chats.
      - `hasData` boolean — False means subscription is active but the service has not yet pushed any state. Do NOT interpret hasData:false as 'offline' — it means 'unknown'.
      - `isSubscribed` boolean — Whether this chat is currently subscribed to presence updates.
  - `links` object
    - `self` string
  - `status` 'success' | 'error'

## Other responses

- `401` — Unauthorized — invalid or missing bearer token
- `403` — Forbidden — insufficient permissions or account blocked
- `404` — Not found — instance does not exist or does not belong to you
- `409` — Conflict — instance is not ready
- `422` — Validation error — invalid or missing request parameters
- `429` — Too many requests — rate limit exceeded

---

[API](https://skmtc.net/waapi/apis/waapi-api.md) · [All operations](https://skmtc.net/waapi/apis/waapi-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/waapi/waapi-api/revisions/1e2cc7c12090/schema)
