# Audimee ## Docs - [Introduction](https://audimee.com/docs/api-reference/introduction.md): Access Audimee voice models and perform AI voice conversions - [List voice models](https://audimee.com/docs/api-reference/voice-models/list.md): Returns voice models available to the authenticated client. By default the response includes both Audimee's built-in voices and the client's own custom voices. Use the `type` query parameter to narrow the response. - [Get a voice model](https://audimee.com/docs/api-reference/voice-models/get.md): Retrieves a single voice model by id. Works for both Audimee built-in voices and the client's own custom voices. - [Create a custom voice model](https://audimee.com/docs/api-reference/voice-models/create.md): Starts training a new custom voice model from the supplied audio URLs. Training runs asynchronously — the response returns immediately with the new model's `id`; poll `GET /voice-models/{id}` and watch `percentageDone` and `confirmedDone` to know when the model is usable for conversions. - [Delete a custom voice model](https://audimee.com/docs/api-reference/voice-models/delete.md): Permanently deletes a custom voice model. The model row, its stored model file, and its training artifacts are all removed — this is irreversible. - [Create a conversion](https://audimee.com/docs/api-reference/conversions/create.md): Starts a new voice conversion job using either an Audimee built-in voice or one of your custom voice models. Conversions run asynchronously — the response returns immediately with the conversion `id`; poll `GET /conversions/{id}` for progress. - [Get a conversion](https://audimee.com/docs/api-reference/conversions/get.md): Returns status and details of a single conversion. `percentageDone` rises as the AI backend processes the job; once `confirmedDone` is `true` the `outputFilePlayUrl` and `outputFileDownloadUrl` are signed URLs you can use directly. ## OpenAPI Specs - [openapi](https://audimee.com/docs/api-reference/openapi.json)