Get a specific memorable quote from Breaking Bad or Better Call Saul using its unique ID.
https://api.mridul.tech/api/breaking-bad/quotes/{id}
Get a specific memorable quote from Breaking Bad or Better Call Saul using its unique ID.
This endpoint returns detailed information about a specific quote from either Breaking Bad or Better Call Saul. Quote IDs range from 1 to 102, covering memorable quotes from both series.
2000 requests per 24 hours per IP address
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
id | integer | Required | Unique quote ID (1-86) | 1 |
GET https://api.mridul.tech/api/breaking-bad/quotes/1
GET https://api.mridul.tech/api/breaking-bad/quotes/2
const quoteId = 1;
fetch(`https://api.mridul.tech/api/breaking-bad/quotes/${quoteId}`)
.then((response) => response.json())
.then((data) => {
if (data.success) {
const quote = data.data;
console.log(`"${quote.quote}" - ${quote.author} (${quote.series})`);
}
});
import requests
quote_id = 1
response = requests.get(f"https://api.mridul.tech/api/breaking-bad/quotes/{quote_id}")
data = response.json()
if data["success"]:
quote = data["data"]
print(f'"{quote["quote"]}" - {quote["author"]} ({quote["series"]})')
curl "GET https://api.mridul.tech/api/breaking-bad/quotes/1"
{
"success": true,
"data": {
"quote_id": 1,
"quote": "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"
}
}
Field | Type | Description |
---|---|---|
quote | integer | The actual quote text |
id | string | Unique quote identifier |
author | string | Character who said the quote |
series | string | Series name (Breaking Bad or Better Call Saul) |
{
"success": false,
"error": "Quote not found",
"statusCode": 404
}
Contact Me ☎️
Discuss A Project Or Just Want To Say Hi?
My Inbox Is Open For All.
Connect with me on Social Media