# Get all email messages
You can return information about all of your email messages.
GET /email-messages/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H "Authorization: Token <your_64_char_api_key>"
-H "Accept: */*; version=2" 
-H "Accept: */*; version=2" -H "Content-Type: application/json" "https://<your_app_subdomain>.user.com/api/public/email-messages/"
# Response
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": 213,
      "name": "Test message",
      "subject": "Test message subject",
      "created_at": "2016-09-19T09:08:53.125485Z",
      "updated_at": "2016-09-19T10:25:43.460763Z",
      "body_text": "My test email message",
      "body_html": "<body><p>My test email message</p></body>",
      "archived": false
    },
    {
      "id": 214,
      "name": "Test message 2",
      "subject": "Test message 2 subject",
      "created_at": "2016-09-20T09:08:53.125485Z",
      "updated_at": "2016-09-20T10:25:43.460763Z",
      "body_text": "My test email 2 message",
      "body_html": "<body><p>My test email message 2</p></body>",
      "archived": false
    }
  ]
}