generated from future4code/pokedex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pokédex.postman_collection.json
70 lines (70 loc) · 1.15 KB
/
Pokédex.postman_collection.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"info": {
"_postman_id": "cca0450c-95e7-4a12-b38f-db86bf255c00",
"name": "Pokédex",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "get pokemons",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://pokeapi.co/api/v2/pokemon/?offset=0&limit=20",
"protocol": "https",
"host": [
"pokeapi",
"co"
],
"path": [
"api",
"v2",
"pokemon",
""
],
"query": [
{
"key": "offset",
"value": "0"
},
{
"key": "limit",
"value": "20"
}
]
}
},
"response": []
},
{
"name": "get details",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://pokeapi.co/api/v2/pokemon/:idDoPokemon",
"protocol": "https",
"host": [
"pokeapi",
"co"
],
"path": [
"api",
"v2",
"pokemon",
":idDoPokemon"
],
"variable": [
{
"key": "idDoPokemon",
"value": "bulbasaur"
}
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
}