---
title: "List Media Extended Audio Descriptions"
method: GET
path: "/media_extended_audio_descriptions"
tags: ["Extended Audio Descriptions"]
---

# List Media Extended Audio Descriptions

`GET /media_extended_audio_descriptions`

Lists all extended audio descriptions belonging to the account. Supports pagination and sorting.

## Query parameters

- `page` integer
- `per_page` integer
- `cursor` object
  - `enabled` 0 | 1 — If `cursor[enabled]` is set to 1, the first result set will be fetched with cursor pagination enabled. This values is ignored if `cursor[before]` or `cursor[after]` are set.
  - `before` string — If `cursor[before]` is set then cursor pagination is enabled and all records before the cursor up to the `per_page` are returned. This feature is useful for fetching "new records", for example, in a "pull to refersh" feature when showing records in a descending order.
  - `after` string — If `cursor[after]` is set then cursor pagination is enabled and all records after the cursor up to the `per_page` are returned.
- `hashed_ids[]` string[]
- `sort_by` 'id'
- `sort_direction` 0 | 1

## Headers

- `X-Wistia-API-Version` string, required

## Response `200`

Media Extended Audio Descriptions retrieval successful

- object[]
  - `id` string
  - `ietf_language_tag` string
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `media` object
    - `id` string, required — A unique alphanumeric identifier for the record.
    - `index_url` string, required — A URL for fetching all the records of the given record type. You can pass hashed_ids as a param with multiple values to do a batch fetch for this records type.
    - `url` string, required — A URL that can be used to fetch this record.
  - `provided_media_file` object
    - `id` string, required — A unique alphanumeric identifier for the record.
    - `index_url` string, required — A URL for fetching all the records of the given record type. You can pass hashed_ids as a param with multiple values to do a batch fetch for this records type.
    - `url` string, required — A URL that can be used to fetch this record.
  - `contact` object
    - `id` string, required — A unique alphanumeric identifier for the record.
    - `index_url` string, required — A URL for fetching all the records of the given record type. You can pass hashed_ids as a param with multiple values to do a batch fetch for this records type.
    - `url` string, required — A URL that can be used to fetch this record.
  - `cursor` string, nullable — A cursor for stable pagination based on current `sort_by` order. You can pass this to `cursor[before]` or `cursor[after]` as a parameter to fetch the records before or after this record in the same sort order. This is only populated if records were fetched with `cursor[enabled]`, or `cursor[before]` or `cursor[after]`.

## Other responses

- `400` — Bad request
- `401` — Unauthorized, invalid or missing token
- `500` — Internal server error

---

[API](https://skmtc.dev/wistia/apis/data-api.md) · [All operations](https://skmtc.dev/wistia/apis/data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/wistia/data-api/revisions/e40b3678d9d5/schema)
