Get memorable quotes from Breaking Bad and Better Call Saul with author and series information.
https://api.mridul.tech/api/breaking-bad/quotes
Get memorable quotes from Breaking Bad and Better Call Saul with author and series information.
This endpoint provides access to a curated collection of memorable quotes from both Breaking Bad and Better Call Saul. Each quote includes the text, author (character), and source series information.
2000 requests per 24 hours per IP address
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
author | string | Optional | Filter quotes by character name (case insensitive) Default: Default: All authors | Walter White |
GET https://api.mridul.tech/api/breaking-bad/quotes
GET https://api.mridul.tech/api/breaking-bad/quotes?author=Walter White
fetch("https://api.mridul.tech/api/breaking-bad/quotes?author=Walter White")
.then((response) => response.json())
.then((data) => {
console.log(`Found ${data.count} quotes`);
data.data.forEach((quote) => {
console.log(`"${quote.quote}" - ${quote.author}`);
});
});
import requests
response = requests.get('https://api.mridul.tech/api/breaking-bad/quotes?author=Walter White')
data = response.json()
print(f"Found {data['count']} quotes")
for quote in data['data']:
print(f'"{quote["quote"]}" - {quote["author"]}')
curl "GET https://api.mridul.tech/api/breaking-bad/quotes?author=Walter White"
{
"success": true,
"data": [
{
"quote": "You clearly don’t know who you’re talking to, so let me clue you in. I am not in danger, Skyler. I am the danger. A guy opens his door and gets shot, and you think that of me? No! I am the one who knocks!",
"author": "Walter White",
"series": "Breaking Bad",
"id": 1
},
{
"quote": "All the things that I did, you need to understand... I did it for me. I liked it. I was good at it. I was alive.",
"author": "Walter White",
"series": "Breaking Bad",
"id": 2
},
{
"quote": "If you don’t know who I am, then maybe your best course would be to tread lightly.",
"author": "Walter White",
"series": "Breaking Bad",
"id": 5
}
]
}
Field | Type | Description |
---|---|---|
quote | integer | The actual quote text |
id | intiger | Unique quote identifier |
author | string | Character who said the quote |
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