Discussions
Some Queens are marked as Winner in the API for season they didn't win.
over 5 years ago by Gianpaolo Luca Bentivegna
Alaska for example is marked as winner even if you see the cast of season 5, but she won only All Stars 2. Same with Chad Michaels.
Feel free to give a look at my project for an Idea: http://dragrace.herokuapp.com/
over 5 years ago by Garrett Levine(edited)
hey there,
queens are marked as a true/false winners at a high level , this can be seen in this endpoint https://www.nokeynoshade.party/api/queens/all.
if you want to know how they placed on a specific season, you can make use of the season array in the queen's object. ie, a request to https://www.nokeynoshade.party/api/seasons/6/queens
returns ;
[
{ ... },
{
"id": 62,
"name": "Alaska Thunderfuck 5000",
"winner": true,
"missCongeniality": false,
"image_url": "http://www.nokeynoshade.party/images/alaska-thunderfuck.jpg",
"quote": "I'll send you 10,000 dollars via PayPal if you let me stay in this competition",
"seasons": [
{
"seasonNumber": "5",
"id": 6,
"place": 2
}
]
}
{ ... }
]
while the she wasn't a winner of this season, the queen is still a winner in general - you can see that she placed 2nd in season 5 based on the season's array provided in the response.
Marked as answered by Garrett Levine