Get a list of fighters matching a set of attributes (see 'Usage/Examples').
GET /fighter?losses=${ls}&wins=${ws}
Parameter
Type
Description
ls
Integer
Losses suffered throughout career
ws
Integer
Wins accumulated throughout carrear
Pass in multiple fighters and or attributes to get back list of matching items.
GET /fighter//Request Body'0':['lastName=St-Pierre','firstName=Georges'],'1':['firstName=Justin','lastName=Gaethje'],'2':['draws=1','losses=3'],
This will return three results: one for the fighter Georges St-Pierre a second for
Justin Gaethje and a third for all fighters with one win and one loss. Note any
action completed with the GET endpoint can also be accomplished with the POST. Lastly, if
if multiple fighters are returned for one first-name last-name pairs, consider specifying
a weight as this means the fighter has fought in two different weight classes.
Usage/Examples
All Parameters
Parameter
Type
Description
firstName
String
First name of fighter
lastName
String
Last name of fighter
wins
Integer
Accumulated careeer wins
losses
Integer
Accumulated careeer losses
draws
Integer
Accumulated careeer draws
height
Double
Height of fighter in feet and inches entered as a decimal pair
weight
Integer
Weight of fighter in pounds
reach
Double
Reach of fighter in inches
Get statistics on a fighter based on first name and last name