· 6 years ago · Jan 29, 2020, 12:56 PM
1{
2 "info": {
3 "_postman_id": "1c179f60-8351-482b-8ce1-921808a59bbd",
4 "name": "chuck-norris-api",
5 "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
6 },
7 "item": [
8 {
9 "name": "random-joke",
10 "request": {
11 "method": "GET",
12 "header": [],
13 "url": {
14 "raw": "https://api.chucknorris.io/jokes/random",
15 "protocol": "https",
16 "host": [
17 "api",
18 "chucknorris",
19 "io"
20 ],
21 "path": [
22 "jokes",
23 "random"
24 ]
25 }
26 },
27 "response": []
28 },
29 {
30 "name": "categories",
31 "request": {
32 "method": "GET",
33 "header": [],
34 "url": {
35 "raw": "https://api.chucknorris.io/jokes/categories",
36 "protocol": "https",
37 "host": [
38 "api",
39 "chucknorris",
40 "io"
41 ],
42 "path": [
43 "jokes",
44 "categories"
45 ]
46 }
47 },
48 "response": []
49 },
50 {
51 "name": "valid-category",
52 "request": {
53 "method": "GET",
54 "header": [],
55 "url": {
56 "raw": "https://api.chucknorris.io/jokes/random?category=fashion",
57 "protocol": "https",
58 "host": [
59 "api",
60 "chucknorris",
61 "io"
62 ],
63 "path": [
64 "jokes",
65 "random"
66 ],
67 "query": [
68 {
69 "key": "category",
70 "value": "fashion"
71 }
72 ]
73 }
74 },
75 "response": []
76 },
77 {
78 "name": "error-category",
79 "request": {
80 "method": "GET",
81 "header": [],
82 "url": {
83 "raw": "https://api.chucknorris.io/jokes/random?category=home",
84 "protocol": "https",
85 "host": [
86 "api",
87 "chucknorris",
88 "io"
89 ],
90 "path": [
91 "jokes",
92 "random"
93 ],
94 "query": [
95 {
96 "key": "category",
97 "value": "home"
98 }
99 ]
100 }
101 },
102 "response": []
103 },
104 {
105 "name": "queries",
106 "request": {
107 "method": "GET",
108 "header": [],
109 "url": {
110 "raw": "https://api.chucknorris.io/jokes/search?query=cat",
111 "protocol": "https",
112 "host": [
113 "api",
114 "chucknorris",
115 "io"
116 ],
117 "path": [
118 "jokes",
119 "search"
120 ],
121 "query": [
122 {
123 "key": "query",
124 "value": "cat"
125 }
126 ]
127 }
128 },
129 "response": []
130 }
131 ],
132 "protocolProfileBehavior": {}
133}