Skip to content

Techial/DBD-Database

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dead by Daylight - Database

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

Built with ❤︎ by Techial and contributors

Table of Contents

Features

  • organized: output doesn't look like it was taken out of a tumbler, thrown on the ground and stamped on
  • always up-to-date: fetches data from the Dead by Daylight - Wiki every hour

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!

Releases

No releases published

Packages

No packages published