> ## Documentation Index
> Fetch the complete documentation index at: https://arthur-87.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Latest Meals

> This list the latest meals.Only available to Paypal supporters

### Body

<RequestExample>
  ```curl curl theme={null}
  curl --location --request Get 'www.themealdb.com/api/json/v1/1/latest.php'
  ```

  ```javascript javascript theme={null}
  var requestOptions = {
    method: 'GET',
    redirect: 'follow'
  };
  fetch("www.themealdb.com/api/json/v1/1/latest.php", requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log('error', error));
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {"meals":{"idMeal":"1","strMeal":"Only For Patreon supporters sorry","strDescription":"Sign up here: https:\/\/www.patreon.com\/thedatadb"}}

  ```
</ResponseExample>
