GET
/
projects
/
{id}
/
voices
curl --request GET \
  --url https://api.beyondwords.io/v1/projects/{id}/voices \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "name": "James",
    "type": "premade",
    "status": "enabled",
    "speaker": null,
    "script_ids": [],
    "speaking_rate": 103,
    "languages": [
      {
        "code": "en_GB",
        "name": "English",
        "accent": "British",
        "preview_url": "https://example.com/James_en_GB_preview.mp3"
      },
      {
        "code": "en_US",
        "name": "English",
        "accent": "American",
        "preview_url": null
      },
      {
        "code": "en_AU",
        "name": "English",
        "accent": "Aussie",
        "preview_url": "https://example.com/James_en_AU_preview.mp3"
      }
    ],
    "cloning_consent": null,
    "clone_errors": [],
    "created": "2022-01-01 00:00:00 UTC",
    "updated": "2022-01-31 12:59:59 UTC",
    "language": "en_GB",
    "secondary_languages": [],
    "service": "azure",
    "preview_url": "https://example.com/James_en_GB_preview.mp3",
    "exclusive": false,
    "custom": false
  },
  {
    "id": 1,
    "name": "Jane",
    "type": "professional",
    "status": "deprecated",
    "speaker": {
      "id": 123,
      "first_name": "Jane",
      "last_name": "Doe",
      "avatar_url": "https://example.com/Jane_avatar.jpg"
    },
    "script_ids": [],
    "speaking_rate": 98,
    "languages": [
      {
        "code": "en_AU",
        "name": "English",
        "accent": "Aussie",
        "preview_url": "https://example.com/Jane_en_AU_preview.mp3"
      }
    ],
    "cloning_consent": "https://example.com/i_agree_to_voice_cloning.mp3",
    "clone_errors": [],
    "created": "2022-01-01 00:00:00 UTC",
    "updated": "2022-01-31 12:59:59 UTC",
    "language": "en_AU",
    "secondary_languages": [],
    "service": "azure",
    "preview_url": "https://example.com/Jane_en_AU_preview.mp3",
    "exclusive": true,
    "custom": true
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

project id

Response

200 - application/json

successful

The response is of type object[].