# List all messages Use this endpoint for the [Media](./index.mdx) method to return a [paged list](/docs/rest/compatibility-api/overview/paging.mdx) of messages sorted with the most recent messages appearing first. ## Parameters | Parameter | Description | | :- | :-- | | DateSent optional | Only return messages sent on this particular date, formatted as **YYYY-MM-DD** in UTC. You can also append < or > to return a range of messages. For example, use DateSent< to return messages sent on or before midnight of the date, or DateSent> to return messages sent on or after midnight of the date. | | From optional | Only return messages sent from this phone number. | | To optional | Only return messages sent to this phone number. | | Status optional | Only return messages that currently have the specified status. | | PageSize optional | Specify the number of results to return on a single page. The default page size is **50** and the maximum is 1000. | ## Examples ### Request: List All Messages In this example, we will list all Messages. 200 OK
json { uri: /api/laml/2010-04-01/Accounts/ea108133-d6b3-407c-9536-9fad8a929a6a/Messages?Page=0&PageSize=50, first_page_uri: /api/laml/2010-04-01/Accounts/ea108133-d6b3-407c-9536-9fad8a929a6a/Messages?Page=0&PageSize=50, next_page_uri: null, previous_page_uri: null, page: 0, page_size: 50, messages: [ { api_version: 2010-04-01, body: Hello World, num_segments: 1, num_media: 0, date_created: Mon, 13 Aug 2018 23:08:35 +0000, date_sent: Mon, 13 Aug 2018 23:08:40 +0000, date_updated: Mon, 13 Aug 2018 23:08:40 +0000, direction: outbound-api, error_code: null, error_message: null, from: +15551234567, price: 0.005, price_unit: USD, status: delivered, to: +15557654321, uri: /api/laml/2010-04-01/Accounts/ea108133-d6b3-407c-9536-9fad8a929a6a/Messages/b3877c40-da60-4998-90ad-b792e98472af, subresource_uris: { media: /api/laml/2010-04-01/Accounts/ea108133-d6b3-407c-9536-9fad8a929a6a/Messages/b3877c40-da60-4998-90ad-b792e98472af/Media } } ] } ### Request: Filter By Date and From In this example, we will filter messages to return only those sent from +15551234567 on or after 2018-08-01.