# Animals

Currently we have **13 animals available** on the API:

```javascript
// You can add an ID in the parameter of the function to get an image with an precise ID
// Or without ID parameter for random images

// Return: Promise

const image = await api.animals.dog(); 

const image = await api.animals.cat(5);

const image = await api.animals.fox(10);

const image = await api.animals.giraffe(7);

const image = await api.animals.kangaroo(1);

const image = await api.animals.lion();

const image = await api.animals.quokka();

const image = await api.animals.wolf();

const image = await api.animals.lezard();

const image = await api.animals.leopard();

const image = await api.animals.singes();

const image = await api.animals.paon();

const image = await api.animals.hamster();
```

**Animals available:**

* Dog
* Cat
* Fox
* Giraffe
* Kangaroo
* Lion
* Quokka
* Wolf
* Lézard
* Léopard
* Singes
* Paon
* Hamster


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.night-api.com/module/images/animals.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
