Get information about character deaths in Breaking Bad including cause, responsible party, and episode details.
https://api.mridul.tech/api/breaking-bad/deaths
Get information about character deaths in Breaking Bad including cause, responsible party, and episode details.
This endpoint provides information about significant character deaths throughout the Breaking Bad series. Each death entry includes details about the victim, cause of death, who was responsible, last words, and the specific episode where it occurred.
2000 requests per 24 hours per IP address
This endpoint contains information about character deaths and may include spoilers for the Breaking Bad series.
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
name | string | Optional | Filter death by character name (case insensitive) | Walter White |
season | intiger | Optional | Parameter to filter by season | 1 |
GET https://api.mridul.tech/api/breaking-bad/deaths
GET https://api.mridul.tech/api/breaking-bad/deaths?name=Gus Fring
fetch("https://api.mridul.tech/api/breaking-bad/deaths")
.then((response) => response.json())
.then((data) => {
console.log(`Found ${data.count} deaths`);
data.data.forEach((death) => {
console.log(
`${death.death} - ${death.cause} (S${death.season}E${death.episode})`
);
});
});
import requests
response = requests.get("https://api.mridul.tech/api/breaking-bad/deaths")
data = response.json()
print(f"Found {data['count']} deaths")
for death in data['data']:
print(f"{death['death']} - {death['cause']} (S{death['season']}E{death['episode']})")
curl "GET https://api.mridul.tech/api/breaking-bad/deaths"
{
"success": true,
"count": 11,
"data": [
{
"death_id": 1,
"death": "Emilio Koyama",
"cause": "Phosphine poisoning",
"responsible": "Walter White",
"last_words": "No, no, no, no!",
"season": 1,
"episode": 1,
"number_of_deaths": 1
},
{
"death_id": 2,
"death": "Krazy-8",
"cause": "Strangulation",
"responsible": "Walter White",
"last_words": "Walter... Walter...",
"season": 1,
"episode": 3,
"number_of_deaths": 1
}
]
}
Field | Type | Description |
---|---|---|
id | string | Unique quote identifier |
death | integer | Name of the victim |
cause | string | Cause or method of death |
responsible | string | Character responsible for the death |
last_words | string | Final words spoken by the victim |
season | string | Season number where death occurred |
series | string | Series name (Breaking Bad or Better Call Saul) |
{
"success": false,
"error": "Error message description",
"statusCode": 400
}
Contact Me ☎️
Discuss A Project Or Just Want To Say Hi?
My Inbox Is Open For All.
Connect with me on Social Media