Get Queens
Get up to 50 queens from Drag Race herstory
Retrieve an array of queens in RuPaul's Drag Race herstory with information about their seasons. Limit of 50 queens per request. Defaults to 20.
Params | Example | Default |
---|---|---|
limit | 50 | 25 |
offset | 25 | 0 |
name | Trixie Mattel | none |
example request:
GET http://www.nokeynoshade.party/api/queens?limit=50
example response:
[
{
"name": 'Trixie Mattel',
"winner": false,
"missCongeniality": false,
"quote": 'Okay, calm down there public school.',
"image_url": 'http://trixie-matel.com/213131.jpg',
"seasons": [
{
"id": 8,
"place": 6
},
{
"id": 12,
"place": null
}
]
},
{ ... },
]
example request:
GET http://www.nokeynoshade.party/api/queens?name=Trixie%20Mattel
example response:
[
{
"name": 'Trixie Mattel',
"winner": false,
"missCongeniality": false,
"quote": 'Okay, calm down there public school.',
"image_url": 'http://trixie-matel.com/213131.jpg',
"seasons": [
{
"id": 8,
"place": 6
},
{
"id": 12,
"place": null
}
]
},
]
Updated about 7 years ago