# Accessibility The Accessibility API evaluates HTML emails against WCAG standards, providing a clear pass/fail assessment to ensure compliance with accessibility guidelines. ## Get Accessibility Tests - [GET /v1/inspect/accessibility](https://documentation.mailgun.com/docs/inspect/api-reference/openapi-final/accessibility/get-v1-inspect-accessibility.md): Retrieve a paginated list of all accessibility tests that have been submitted. Each test includes details such as its status, the number of checks performed, and, of those checks, how many passes and failures there were. The response is paginated, with a limit of up to 1000 items per page. The total count of records will display in the meta object under the key, 'count'. ## Create Accessibility Test - [POST /v1/inspect/accessibility](https://documentation.mailgun.com/docs/inspect/api-reference/openapi-final/accessibility/post-v1-inspect-accessibility.md): This endpoint allows users to submit an accessibility test for processing. It accepts a set of HTML content, processes it for accessibility issues, and returns a unique job ID for tracking the status of the test. The status of the job will display in the meta object, with a status of 'Processing'. ## Get Accessibility Test - [GET /v1/inspect/accessibility/{id}](https://documentation.mailgun.com/docs/inspect/api-reference/openapi-final/accessibility/get-v1-inspect-accessibility--id-.md): Retrieve the details of a specific accessibility test using the provided test ID. This endpoint returns comprehensive details about the test, including metadata and test results. ## Delete Accessibility Test - [DELETE /v1/inspect/accessibility/{id}](https://documentation.mailgun.com/docs/inspect/api-reference/openapi-final/accessibility/delete-v1-inspect-accessibility--id-.md): Delete a specific accessibility test by its unique test ID. This endpoint allows you to remove an accessibility test from the system. If the test ID does not exist, the appropriate error message is returned.