Get information about all Breaking Bad characters with optional filtering and pagination.
https://api.mridul.tech/api/breaking-bad/characters/{id}
Get information about all Breaking Bad characters with optional filtering and pagination.
This endpoint returns detailed information about a specific Breaking Bad character identified by their unique ID. Character IDs range from 1 to 62, covering all main and supporting characters from the series.
2000 requests per 24 hours per IP address
This endpoint contains information about character deaths and may include spoilers for the Breaking Bad series.
Character IDs range from 1-62. Popular characters include:
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
id | integer | Required | Unique character ID (1-62) | 1 |
GET https://api.mridul.tech/api/breaking-bad/characters/1
GET https://api.mridul.tech/api/breaking-bad/characters/2
GET https://api.mridul.tech/api/breaking-bad/characters/3
const characterId = 1;
fetch(`https://api.mridul.tech/api/breaking-bad/characters/${characterId}`)
.then((response) => response.json())
.then((data) => {
if (data.success) {
console.log("Character:", data.data.name);
}
});
import requests
character_id = 1
response = requests.get(f'https://api.mridul.tech/api/breaking-bad/characters/{character_id}')
if response.status_code == 200:
data = response.json()
if data['success']:
print("Character:", data['data']['name'])
else:
print(f"Error: {response.status_code}")
curl "https://api.mridul.tech/api/breaking-bad/characters/1"
{
"success": true,
"data": {
"name": "Walter White",
"portrayed": "Bryan Cranston",
"image_url": "https://static.wikia.nocookie.net/breakingbad/images/e/e7/BB-S5B-Walt-590.jpg",
"full_name": "Walter Hartwell White Sr.",
"birth_date": "September 7, 1958",
"occupation": [
"Co-Founder, Gray Matter Technologies",
"Chemist, Sandia Laboratories",
"Chemistry Teacher, J. P. Wynne High School (former)",
"Crystal Meth Manufacturer (former)",
"Drug Kingpin (former)",
"Co-Owner, A1A Car Wash (former)",
"Co-Owner, Vamonos Pest (former)"
],
"episodes_count": "62",
"series": "Breaking Bad",
"appearances": ["1", "2", "3", "4", "5a", "5b"],
"id": 1
}
}
Field | Type | Description |
---|---|---|
id | integer | Unique character identifier |
name | string | Character's full name |
portrayed | string | Actor who portrayed the character |
image_url | string | URL to character's image |
full_name | string | Full name of the character |
birthday | string | Character's birthday in MM-DD-YYYY format |
occupation | array | List of character's occupations |
episodes_count | string | Number of Episodes the character appeared in |
series | string | Name of the series |
appearances | array | Season list, the character appeared in |
{
"success": false,
"error": "Character not found",
"statusCode": 404
}
{
"success": false,
"message": "Character not found"
}
Contact Me ☎️
Discuss A Project Or Just Want To Say Hi?
My Inbox Is Open For All.
Connect with me on Social Media