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

# Get raw message body

> Returns raw message body content for the authenticated mailbox. This endpoint does not strip signatures, strip quoted replies, extract links, or clean the body into a structured content shape.



## OpenAPI

````yaml /openapi-app.json get /mailbox/messages/{message_id}/body
openapi: 3.1.0
info:
  description: Programmatic access to your Sendmux email infrastructure.
  title: Sendmux API
  version: 1.0.0
servers:
  - description: API v1
    url: https://app.sendmux.ai/api/v1
security:
  - bearerAuth: []
paths:
  /mailbox/messages/{message_id}/body:
    get:
      tags:
        - Mailbox API
      summary: Get raw message body
      description: >-
        Returns raw message body content for the authenticated mailbox. This
        endpoint does not strip signatures, strip quoted replies, extract links,
        or clean the body into a structured content shape.
      operationId: mailboxListBody
      parameters:
        - in: path
          name: message_id
          required: true
          schema:
            description: Message ID.
            type: string
        - in: query
          name: part
          required: false
          schema:
            description: Body part to return.
            enum:
              - text
              - html
              - both
            type: string
        - in: query
          name: max_body_chars
          required: false
          schema:
            description: Maximum body characters to return before truncation.
            maximum: 1000000
            minimum: 1
            type: integer
        - in: header
          name: If-None-Match
          required: false
          schema:
            description: Weak ETag from a previous response. Returns 304 when unchanged.
            type: string
        - description: >-
            Mailbox public ID to target when the credential grants access to
            more than one mailbox. Omit when the credential is scoped to exactly
            one mailbox.
          in: query
          name: mailbox_id
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MailboxRawBodyResponse'
          description: Raw message body
        '304':
          description: Not modified
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Invalid query parameter
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
          description: Message not found
      security:
        - bearerAuth: []
components:
  schemas:
    MailboxRawBodyResponse:
      allOf:
        - $ref: '#/components/schemas/SuccessEnvelope'
        - properties:
            data:
              allOf:
                - $ref: '#/components/schemas/MailboxRawBody'
                - type: object
            meta:
              $ref: '#/components/schemas/ResponseMeta'
          required:
            - data
          type: object
      unevaluatedProperties: false
    ApiError:
      additionalProperties: false
      properties:
        error:
          additionalProperties: false
          properties:
            code:
              description: Machine-readable error code
              enum:
                - invalid_parameter
                - missing_parameter
                - authentication_required
                - insufficient_permissions
                - not_found
                - conflict
                - limit_exceeded
                - idempotency_conflict
                - payload_too_large
                - validation_error
                - rate_limit_exceeded
                - service_unavailable
                - internal_error
              example: invalid_parameter
              type: string
            doc_url:
              description: Link to relevant documentation
              type: string
            errors:
              description: >-
                Accumulated per-field issues for validation errors. Only present
                on 400/422 responses.
              items:
                $ref: '#/components/schemas/ApiErrorDetail'
              type: array
            message:
              description: Human-readable error description
              type: string
            param:
              description: The parameter that caused the error
              type: string
            retryable:
              description: >-
                Whether the caller may safely retry this request. 4xx are
                typically false (except 429); 5xx are typically true.
              example: false
              type: boolean
          required:
            - code
            - message
            - retryable
          type: object
        meta:
          additionalProperties: false
          properties:
            request_id:
              example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
              type: string
          required:
            - request_id
          type: object
        ok:
          enum:
            - false
          type: boolean
      required:
        - ok
        - error
        - meta
      type: object
    SuccessEnvelope:
      properties:
        meta:
          additionalProperties: {}
          properties: {}
          type: object
        ok:
          enum:
            - true
          type: boolean
      required:
        - ok
        - meta
      type: object
    MailboxRawBody:
      additionalProperties: false
      properties:
        body:
          additionalProperties: false
          properties:
            html:
              type:
                - string
                - 'null'
            is_truncated:
              type: boolean
            text:
              type:
                - string
                - 'null'
            truncated_at_chars:
              type:
                - integer
                - 'null'
          required:
            - text
            - html
            - is_truncated
            - truncated_at_chars
          type: object
        id:
          description: Message ID
          type: string
        part:
          enum:
            - text
            - html
            - both
          type: string
        states:
          additionalProperties: false
          properties:
            email_state:
              type:
                - string
                - 'null'
          required:
            - email_state
          type: object
        thread_id:
          type:
            - string
            - 'null'
      required:
        - id
        - thread_id
        - part
        - body
        - states
      type:
        - object
        - 'null'
    ResponseMeta:
      additionalProperties: false
      properties:
        request_id:
          example: req_clxxxxxxxxxxxxxxxxxxxxxxxxx
          type: string
      required:
        - request_id
      type: object
    ApiErrorDetail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Machine-readable issue code from the validator (e.g. zod issue
            code).
          example: invalid_string
          type: string
        field:
          description: Dot-path of the offending request field.
          example: recipient.email
          type: string
        message:
          description: Human-readable issue description.
          type: string
      required:
        - field
        - code
        - message
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: API Key
      description: >-
        Sendmux API key. Use a root API key for Management API routes, or a
        mailbox credential for Mailbox API routes. Obtain keys from the
        dashboard under API Keys.
      scheme: bearer
      type: http

````