Lebanese humor, served hot and funny
7asriyan mn 3and Abu El Abed!
This API serves random Abu El Abed jokes in JSON format. It’s perfect for apps, bots, or websites looking for a laugh—Lebanese style.
https://abu-abed.onrender.com
GET /api/jokeReturns a random Abu El Abed joke.
Response:
{
"joke": "Abed asked his mother: Mazbout enno aneh asleh ered?\n\nEl Abed: Ma ba3ref..."
}
GET /api/jokesReturns a full list of jokes in JSON format.
Response:
[
{ "joke": "..." },
{ "joke": "..." },
...
]
This API supports cross-origin requests (CORS), so it can be used in the browser from any domain.
fetch("https://abu-abed.onrender.com/api/joke")
.then(res => res.json())
.then(data => console.log(data.joke));
If you like this API, share it with your friends or use on your own projects.