Abu El Abed Joke API

Lebanese humor, served hot and funny

7asriyan mn 3and Abu El Abed!

Overview

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.

Base URL

https://abuelabed.mh4d.eu.org

Endpoints

GET /api/joke

Returns a random Abu El Abed joke.

Response:
{
  "joke": "Abed asked his mother: Mazbout enno aneh asleh ered?\n\nEl Abed: Ma ba3ref..."
}
      

GET /api/jokes

Returns a full list of jokes in JSON format.

Response:
[
  { "joke": "..." },
  { "joke": "..." },
  ...
]
      

CORS Support

This API supports cross-origin requests (CORS), so it can be used in the browser from any domain.

Example Fetch

fetch("https://abuelabed.mh4d.eu.org/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.