-
Notifications
You must be signed in to change notification settings - Fork 63
/
Breaking_Bad_Quotes_API.postman_collection.json
61 lines (61 loc) · 1.31 KB
/
Breaking_Bad_Quotes_API.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
{
"info": {
"_postman_id": "9baf9c46-b309-4b2d-a096-0ba891b55478",
"name": "Breaking Bad Quotes API",
"description": "# Breaking Bad quotes API\n\nA simple API to retrieve some quotes of Breaking Bad, bitch!\n\n🌐 Website and demo: [https://breakingbadquotes.xyz/](https://breakingbadquotes.xyz/)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "Get one random quote",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://api.breakingbadquotes.xyz/v1/quotes",
"protocol": "https",
"host": [
"api",
"breakingbadquotes",
"xyz"
],
"path": [
"v1",
"quotes"
]
},
"description": "Get a random quote"
},
"response": []
},
{
"name": "Get {{number}} random quotes",
"request": {
"method": "GET",
"header": [],
"url": {
"raw": "https://api.breakingbadquotes.xyz/v1/quotes/{{number}}",
"protocol": "https",
"host": [
"api",
"breakingbadquotes",
"xyz"
],
"path": [
"v1",
"quotes",
"{{number}}"
]
},
"description": "Returns an array with {number} quotes e.g. `GET /v1/quotes/5`."
},
"response": []
}
],
"variable": [
{
"key": "number",
"value": "5"
}
]
}