We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/pokemon
Our API needs to expose a Pokemon's type. As it currently stands, a request to http://localhost:8000/pokemon/ returns:
http://localhost:8000/pokemon/
[ { "id": 1, "name_english": "Bulbasaur", "name_japanese": "フシギダネ", "name_chinese": "妙蛙种子", "name_french": "Bulbizarre", "hp": 45, "attack": 49, "defense": 49, "special_attack": 65, "special_defense": 65, "speed": 45 }, { "id": 2, ...
[ { "id": 1, "name_english": "Bulbasaur", "name_japanese": "フシギダネ", "name_chinese": "妙蛙种子", "name_french": "Bulbizarre", "hp": 45, "attack": 49, "defense": 49, "special_attack": 65, "special_defense": 65, "speed": 45, "types": [ { "type": "Grass" }, { "type": "Poison" } ] }, { "id": 2,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What you need to do
Our API needs to expose a Pokemon's type. As it currently stands, a request to
http://localhost:8000/pokemon/
returns:Expected behavior
The text was updated successfully, but these errors were encountered: