Skip to content
VooDoo edited this page Jan 14, 2020 · 7 revisions

Welcome to the Dead by Daylight API wiki!

First, this API is not affiliated with Dead by Daylight or any BEHAVIOUR game company.
I am doing this only for my own app, so I thought it might be useful to someone else.


General

URL options

You can add option(s) to an url in order to search something specificly.
e.g. If you want informations about Meg Thomas you can just add this option at the end of the URL ?name_tag=MT
All options are visible on the API documentation HERE

Images

You can get images simply with perk_tag & name_tag directly in this repo.
Perk images:

var perk_image_url = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Perks/"+ perk_tag + ".png"

Survivors and Killers images:

// Survivors
var portrait_survivor = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Survivors/Portrait/"+ name_tag + ".png"
var preview_survivor = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Survivors/Preview/"+ name_tag + ".png"
var shopBG_survivor = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Survivors/ShopBG/"+ name_tag + ".png"

// Killers
var portrait_killer = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Killers/Portrait/"+ name_tag + ".png"
var preview_killer = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Killers/Preview/"+ name_tag + ".png"
var shopBG_killer = "https://raw.githubusercontent.com/dearvoodoo/dbd/master/Killers/ShopBG/"+ name_tag + ".png"

Use

GET https://bridge.buddyweb.fr/api/dbd/perks
this url give you all perks in game for killers & survivors

To get a special perk you can:
GET https://bridge.buddyweb.fr/api/dbd/perks?perk_tag=QuickQuiet
And you get this:

{
    "role": "Survivor",
    "name": "Meg Thomas",
    "name_tag": "MT",
    "perk_name": "Quick & Quiet",
    "perk_tag": "QuickQuiet",
    "desc": "You do not make as much noise as others when quickly vaulting over obstacles or hiding in Lockers.<br>The vault and hide actions' noise detection and audio range is reduced by 100 %.<br>Quick & Quiet can only be triggered once every 20 seconds.",
    "teach_level": 30
}
Clone this wiki locally