---
title: "Get Message"
method: GET
path: "/v0/inboxes/{inbox_id}/messages/{message_id}"
tags: ["InboxesMessages"]
---

# Get Message

`GET /v0/inboxes/{inbox_id}/messages/{message_id}`

**CLI:**
```bash
agentmail inboxes:messages get --inbox-id <inbox_id> --message-id <message_id>
```

## Path parameters

- `inbox_id` string, required — The ID of the inbox.
- `message_id` string, required — ID of message.

## Response `200`

- Message
  - `inbox_id` string, required — The ID of the inbox.
  - `thread_id` string, required — ID of thread.
  - `message_id` string, required — ID of message.
  - `labels` string[], required — Labels of message.
  - `timestamp` string, date-time, required — Time at which message was sent or drafted.
  - `from` string, required — Address of sender. In format `username@domain.com` or `Display Name <username@domain.com>`.
  - `reply_to` string[], nullable — Reply-to addresses. In format `username@domain.com` or `Display Name <username@domain.com>`.
  - `to` string[], required — Addresses of recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
  - `cc` string[] — Addresses of CC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
  - `bcc` string[] — Addresses of BCC recipients. In format `username@domain.com` or `Display Name <username@domain.com>`.
  - `subject` string — Subject of message.
  - `preview` string — Text preview of message.
  - `text` string — Plain text body of message.
  - `html` string — HTML body of message.
  - `extracted_text` string, nullable — Extracted new text content.
  - `extracted_html` string, nullable — Extracted new HTML content.
  - `attachments` Attachment[] — Attachments in message.
    - `attachment_id` string, required — ID of attachment.
    - `filename` string — Filename of attachment.
    - `size` integer, required — Size of attachment in bytes.
    - `content_type` string — Content type of attachment.
    - `content_disposition` 'inline' | 'attachment' — Content disposition of attachment.
    - `content_id` string — Content ID of attachment.
  - `in_reply_to` string — ID of message being replied to.
  - `references` string[] — IDs of previous messages in thread.
  - `headers` MessageHeaders — Headers in message.
  - `size` integer, required — Size of message in bytes.
  - `updated_at` string, date-time, required — Time at which message was last updated.
  - `created_at` string, date-time, required — Time at which message was created.

## Other responses

- `404`

---

[API](https://skmtc.net/agentmail-to/apis/api-2.md) · [All operations](https://skmtc.net/agentmail-to/apis/api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agentmail-to/api-2/revisions/869b7f1c360c/schema)
