> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chatsyncs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Delivery Message Status

> Check the delivery status (sent, delivered, read, failed) of a WhatsApp message via the ChatSyncs API, using the wa_message_id returned from a send call. Use when a developer asks how to confirm a message was delivered or read.

Checks the delivery status of a message you sent — pass the `wa_message_id` you got back from
[Send Text Message](/developer-api/whatsapp/send-text-message) or a similar send endpoint.

<Tip>
  **Where to find `whatsapp_bot_id`:** open **Chatbot Manager → Keyword Replies** — it's shown in the same
  **Unique ID** column as `bot_flow_unique_id`. See
  [Finding Your IDs & API Token](/developer-api/finding-ids#bot-flow-and-whatsapp-bot-id-bot_flow_unique_id)
  for a screenshot.
</Tip>


## OpenAPI

````yaml GET /whatsapp/get/message-status
openapi: 3.1.0
info:
  title: ChatSyncs Developer API
  version: 1.0.0
  description: >-
    REST API for sending WhatsApp messages and managing subscribers through
    ChatSyncs.
servers:
  - url: https://platform.chatsyncs.com/api/v1
security: []
paths:
  /whatsapp/get/message-status:
    get:
      tags:
        - WhatsApp API
      summary: Get Delivery Message Status
      operationId: getMessageStatus
      parameters:
        - name: apiToken
          in: query
          required: true
          schema:
            type: string
            example: API-KEY
          description: >-
            Your ChatSyncs API key (not a WhatsApp/Meta access token). [Where to
            find it](/developer-api/finding-ids#api-token-apitoken).
        - name: wa_message_id
          in: query
          required: true
          schema:
            type: string
            example: WAMID.XXXXX
          description: The WhatsApp message ID to check, returned by a send endpoint.
        - name: whatsapp_bot_id
          in: query
          required: true
          schema:
            type: number
            example: 123
          description: >-
            The WhatsApp bot ID the message was sent from. [Where to find
            it](/developer-api/finding-ids#bot-flow-and-whatsapp-bot-id-bot_flow_unique_id).
      responses:
        '200':
          description: >-
            Standard ChatSyncs response. `status` is `"1"` on success and `"0"`
            on failure.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    description: '`"1"` = success, `"0"` = failure.'
                  message:
                    type: string
                    description: Human-readable result message.
              examples:
                success:
                  summary: Success
                  value:
                    status: '1'
                    message_status: delivered
                    message: Success.
                error:
                  summary: Error
                  value:
                    status: '0'
                    message: Invalid request.

````