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

# Get Message

Retrieve a specific message given its message SID.

<Note>
  External Documentation

  To learn more, visit the [Twilio documentation](https://www.twilio.com/docs/messaging/api/message-resource#fetch-a-message-resource).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                               |
  | ----------- | --------------------------------------------------------------------------------------------------------- |
  | Message SID | The unique identifier of the message to get details of. Can be retrieved from the 'List Messages' action. |
</div>

## Example Output

```json theme={"dark"}
{
	"account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"api_version": "2010-04-01",
	"body": "testing",
	"date_created": "Fri, 24 May 2019 17:18:27 +0000",
	"date_sent": "Fri, 24 May 2019 17:18:28 +0000",
	"date_updated": "Fri, 24 May 2019 17:18:28 +0000",
	"direction": "outbound-api",
	"error_code": 30007,
	"error_message": "Carrier violation",
	"from": "+12019235161",
	"messaging_service_sid": "MGXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
	"num_media": "0",
	"num_segments": "1",
	"price": "-0.00750",
	"price_unit": "USD",
	"sid": "MM800f449d0399ed014aae2bcc0cc2f2ec",
	"status": "sent",
	"subresource_uris": {
		"media": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages/SMb7c0a2ce80504485a6f653a7110836f5/Media.json",
		"feedback": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages/SMb7c0a2ce80504485a6f653a7110836f5/Feedback.json"
	},
	"to": "+18182008801",
	"uri": "/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages/SMb7c0a2ce80504485a6f653a7110836f5.json"
}
```

## Workflow Library Example

[Get Message with Twilio and Send Results Via Email](https://library.blinkops.com/workflows/get-message-with-twilio-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-message-with-twilio-and-send-results-via-email/canvas" />
</div>
