Techial / DBD-Database

Dead By Daylight - Automatically Updated Database
https://dbd-database.vercel.app
MIT License
3 stars 0 forks source link
api database dbd deadbydaylight game gaming nodejs

Dead by Daylight - Database

Automatically updated
Fetches new information from the Dead by Daylight - Wiki every hour


API stability Queries handled Standard
Built with ❤︎ by Techial and contributors

Table of Contents

Features

API

Retrieve Killer Perks at:

https://dbd.techial.net/API/v1/killer_perks


Retrieve Survivor Perks at:

https://dbd.techial.net/API/v1/survivor_perks


Retrieve Killers at:

https://dbd.techial.net/API/v1/killers


Retrieve Survivors at:

https://dbd.techial.net/API/v1/survivors


Data Structure

Perks:

{
  "perks": [{
    "_id": "mongoDB generated unique ObjectID",
    "name": "Perk display name (With space and all characters)",
    "URIName": "URL safe string (name of perk)",
    "iconURL": "Perk icon URL",
    "characterName": "Name of Character perk belongs to - THIS FIELD IS OMITTED IF NO CHARACTER IS ASSOCIATED WITH THE PERK",
    "character": "ObjectID of Character perk belongs to - THIS FIELD IS OMITTED IF NO CHARACTER IS ASSOCIATED WITH THE PERK",
    "content": "Display text (with HTML elements) scraped from https://deadbydaylight.fandom.com/",
    "contentText": "Same as `content` without HTML elements"
  },
  ...
  ]
}

Survivors:

{
  "survivors": [{
    "_id": "mongoDB generated unique ObjectID",
    "name": "Character display name (With space and all characters)",
    "URIName": "URL safe string (name of survivor)",
    "iconURL": "Character image URL",
    "link": "Character URL at https://deadbydaylight.fandom.com/"
  },
  ...
  ]
}

Killers:

{
  "killers": [{
    "_id": "mongoDB generated unique ObjectID",
    "name": "Full Character name (With space and all characters)",
    "killerName": "Short name used in-game (e.g Trapper, Wraith etc)",
    "URIName": "URL safe string (name of Killer)",
    "iconURL": "Character image URL",
    "link": "Character URL at https://deadbydaylight.fandom.com/"
  },
  ...
  ]
}

Support

Open an issue if you feel like anything needs to be added. I'll gladly review pull requests and merge them if deemed to be useful!