animename = search['data']['Page']['media'][0]['title']['romaji']
animename_en = animename = search['data']['Page']['media'][0]['title']['english']
embed = discord.Embed(title=animename + " (English: " + animename_en + ")", color=0x2a9ff, url="https://anilist.co/anime/{}".format(ide))
I am using these codes for my discord bot and the result is this:

Should'nt this title would be like
Shingeki no Kyojin (English: Attack on Titan)
As you can see in the AniList page Romaji shows the name as Shingeki no Kyojin.
animename = search['data']['Page']['media'][0]['title']['romaji']animename_en = animename = search['data']['Page']['media'][0]['title']['english']embed = discord.Embed(title=animename + " (English: " + animename_en + ")", color=0x2a9ff, url="https://anilist.co/anime/{}".format(ide))I am using these codes for my discord bot and the result is this:
Should'nt this title would be like
As you can see in the AniList page Romaji shows the name as Shingeki no Kyojin.