> For the complete documentation index, see [llms.txt](https://tutyamxx.gitbook.io/romanian-jokes-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tutyamxx.gitbook.io/romanian-jokes-api-docs/get-all-romanian-jokes.md).

# GET - All Romanian Jokes

➡️ This will be the endpoint in retrieving all the Romanian Jokes from the API

## Get all the Romanian jokes

<mark style="color:blue;">`GET`</mark> `https://romanian-jokes-api.herokuapp.com/v1/romanianjokes/all`

This endpoint allows you to get all the Romanian jokes from the API

#### Path Parameters

| Name           | Type   | Description                         |
| -------------- | ------ | ----------------------------------- |
| /romanianjokes | string | Obligatory path                     |
| /all           | string | Path towards all the Romanian jokes |

{% tabs %}
{% tab title="200 All Romanian jokes successfully retrieved.
❗ Below is just an example; the JSON response is very large ❗" %}

```
[
    {
        "id": 1,
        "joketype": "blonde",
        "joke": "Doua blonde fac nudism pe iarba verde. La un moment apare un taur. Blondele o iau la fuga. Dupa ce obosesc bine cu taurul dupa ele se opreste una si spune. Mai bine fac un vitel decit un infarct."
    },
    {
        "id": 2,
        "joketype": "blonde",
        "joke": "– De ce el nu mi se potrivește? -Păi, el este deștept și tu ești frumoasă, și încă și blondă. – Nu înțeleg… – Despre asta și e vorba!"
    },
    {
        "id": 3,
        "joketype": "blonde",
        "joke": "Blonda îi spune prietenei sale: Cred că mi-a făcut cerere de căsătorie. El a spus că vrea să pună capăt prieteniei noastre."
    },
    ...
]
```

{% endtab %}
{% endtabs %}
