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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
# -*- restclient -*-
#
# Create Heroes
#
# Iroman
POST http://localhost:5000/api/v1/heroes
Authorization: Bearer <token>
Content-Type: application/json
{
"name": "Ironman",
"powerstats": {
"intelligence": "100",
"strength": "85",
"speed": "58",
"durability": "85",
"power": "100",
"combat": "64"
},
"biography": {
"full-name": "Tony Stark",
"alter-egos": "No alter egos found.",
"aliases": [
"Iron Knight",
"Hogan Potts",
"Spare Parts Man",
"Cobalt Man II",
"Crimson Dynamo",
"Ironman"
],
"place-of-birth": "Long Island, New York",
"first-appearance": "Tales of Suspence #39 (March, 1963)",
"publisher": "Marvel Comics",
"alignment": "good"
},
"appearance": {
"gender": "Male",
"race": "Human",
"height": [
"6'6",
"198 cm"
],
"weight": [
"425 lb",
"191 kg"
],
"eye-color": "Blue",
"hair-color": "Black"
},
"work": {
"occupation": "Inventor, Industrialist; former United States Secretary of Defense",
"base": "Seattle, Washington"
},
"connections": {
"group-affiliation": "Avengers, Illuminati, Stark Resilient; formerly S.H.I.E.L.D., leader of Stark Enterprises, the Pro-Registration Superhero Unit, New Avengers, Mighty Avengers, Hellfire Club, Force Works, Avengers West Coast, United States Department of Defense.",
"relatives": "Howard Anthony Stark (father, deceased), Maria Stark (mother, deceased), Morgan Stark (cousin), Isaac Stark (ancestor)"
},
"image": {
"url": "https://www.superherodb.com/pictures2/portraits/10/100/85.jpg"
}
}
# Zoom
POST http://localhost:5000/api/v1/heroes
Authorization: Bearer <token>
Content-Type: application/json
{
"name": "Zoom",
"powerstats": {
"intelligence": "50",
"strength": "10",
"speed": "100",
"durability": "28",
"power": "100",
"combat": "28"
},
"biography": {
"full-name": "Hunter Zolomon",
"alter-egos": "No alter egos found.",
"aliases": [
"-"
],
"place-of-birth": "-",
"first-appearance": "Flash Secret Files #3",
"publisher": "DC Comics",
"alignment": "bad"
},
"appearance": {
"gender": "Male",
"race": "null",
"height": [
"6'1",
"185 cm"
],
"weight": [
"181 lb",
"81 kg"
],
"eye-color": "Red",
"hair-color": "Brown"
},
"work": {
"occupation": "-",
"base": "Keystone City, Kansas"
},
"connections": {
"group-affiliation": "Secret Society of Super Villains, formerly Keystone Police Department, F.B.I.",
"relatives": "Ashley Zolomon (ex-wife)"
},
"image": {
"url": "https://www.superherodb.com/pictures2/portraits/10/100/1384.jpg"
}
}
# A-Bomb
POST http://localhost:5000/api/v1/heroes
Authorization: Bearer <token>
Content-Type: application/json
{
"name": "A-Bomb",
"powerstats": {
"intelligence": "38",
"strength": "100",
"speed": "17",
"durability": "80",
"power": "24",
"combat": "64"
},
"biography": {
"full-name": "Richard Milhouse Jones",
"alter-egos": "No alter egos found.",
"aliases": [
"Rick Jones"
],
"place-of-birth": "Scarsdale, Arizona",
"first-appearance": "Hulk Vol 2 #2 (April, 2008) (as A-Bomb)",
"publisher": "Marvel Comics",
"alignment": "good"
},
"appearance": {
"gender": "Male",
"race": "Human",
"height": [
"6'8",
"203 cm"
],
"weight": [
"980 lb",
"441 kg"
],
"eye-color": "Yellow",
"hair-color": "No Hair"
},
"work": {
"occupation": "Musician, adventurer, author; formerly talk show host",
"base": "-"
},
"connections": {
"group-affiliation": "Hulk Family; Excelsior (sponsor), Avengers (honorary member); formerly partner of the Hulk, Captain America and Captain Marvel; Teen Brigade; ally of Rom",
"relatives": "Marlo Chandler-Jones (wife); Polly (aunt); Mrs. Chandler (mother-in-law); Keith Chandler, Ray Chandler, three unidentified others (brothers-in-law); unidentified father (deceased); Jackie Shorr (alleged mother; unconfirmed)"
},
"image": {
"url": "https://www.superherodb.com/pictures2/portraits/10/100/10060.jpg"
}
}
|