Skip to content
New issue

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

[Feature] Implement Get Pokemon by Type #4

Open
sbmsr opened this issue Dec 6, 2022 · 0 comments
Open

[Feature] Implement Get Pokemon by Type #4

sbmsr opened this issue Dec 6, 2022 · 0 comments

Comments

@sbmsr
Copy link
Member

sbmsr commented Dec 6, 2022

What you need to do

Our API needs to support the ability to Get Pokemon by Type

Expected behavior

  1. a request to http://localhost:8000/pokemon/type/fairy should return HTTP status 200 and the following JSON body
[
	{
		"id": 35,
		"name_english": "Clefairy",
		"name_japanese": "ピッピ",
		"name_chinese": "皮皮",
		"name_french": "Mélofée",
		"hp": 70,
		"attack": 48,
		"defense": 45,
		"special_attack": 60,
		"special_defense": 65,
		"speed": 35,
		"types": [
			{
				"type": "Fairy"
			}
		]
	},
...
  1. a request to http://localhost:8000/pokemon/type/webdevwithseb should return HTTP status 400 and the following JSON body
{
    error: "Bad request"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant