Drop Time API Routes

This uses laby.net’s database so if a dropping name shows up as not dropping in the API its because laby.net hasn't cached the account that dropped the name. These docs aim to serve as a guide on how to use this API and what responses can possibly be returned.

GET /droptime/:username

This is currently the only endpoint for this API.

Possible responses

Here are the different responses that can be returned:

Username Dropping Soon / HTTP 200:

{
  "status": "dropping",
  "droptime": "2021-07-17T22:09:48.000Z"
}

Username Not Dropping / HTTP 200:

{
  "status": "not_dropping"
}

An unknown error has occurred / HTTP 404:

{
  "error": "An error has occured"
}

Copyright Faav 2021, all rights reserved.