rick-and-morty-wiki/Rick & Morty API.postman_collection.json

118 lines
No EOL
2 KiB
JSON

{
"info": {
"_postman_id": "4efee5e2-3315-48d6-a636-6a69fb5f0e50",
"name": "Rick & Morty API",
"description": "Rick and Morty HATEOAS API",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Main Endpoint Request",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api"
]
}
},
"response": []
},
{
"name": "GET First Episodes Page",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode"
]
}
},
"response": []
},
{
"name": "GET An Episodes Page",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/episode?page=2",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"episode"
],
"query": [
{
"key": "page",
"value": "2"
}
]
}
},
"response": []
},
{
"name": "GET a Location",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/location/3",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"location",
"3"
]
}
},
"response": []
},
{
"name": "GET a character",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://rickandmortyapi.com/api/character/8",
"protocol": "https",
"host": [
"rickandmortyapi",
"com"
],
"path": [
"api",
"character",
"8"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
}