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.

ParamsExampleDefault
limit5025
offset250
nameTrixie Mattelnone

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
        }
    ]
  },
]