Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions Rick And Morty.postman_collection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"info": {
"_postman_id": "d25a2ace-ba4f-43a4-80d3-7d16caddf291",
"name": "Rick And Morty",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Get Episodes",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode?page=1",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode"
],
"query": [
{
"key": "page",
"value": "1"
}
]
}
},
"response": []
},
{
"name": "Get episode",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode/1",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode",
"1"
]
}
},
"response": []
},
{
"name": "Get character",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/character/1",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"character",
"1"
]
}
},
"response": []
},
{
"name": "Get location",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/location/20",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"location",
"20"
]
}
},
"response": []
}
]
}
Loading