freeDictionaryAPI
freeDictionaryAPI copied to clipboard
phonetics audio URLs are missing the protocol ("https:")
The JSON in the api response for phonetics audio URL is missing the protocol.
Here is an example response to https://api.dictionaryapi.dev/api/v2/entries/en/play
[
{
"word": "play",
"phonetic": "pleɪ",
"phonetics": [
{
"text": "pleɪ",
"audio": "//ssl.gstatic.com/dictionary/static/sounds/20200429/play--_gb_1.mp3"
}
],
...
The audio url value is missing "https:"
Up