> For the complete documentation index, see [llms.txt](https://developers.make.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.make.com/custom-apps-documentation/app-components/modules.md).

# Modules

There are six basic types of modules:

<table><thead><tr><th width="226.5926513671875" valign="top">Type</th><th valign="top">Description</th></tr></thead><tbody><tr><td valign="top">​<a href="/pages/kyQcvZJY5ncUXwbuwr3W">Action​</a></td><td valign="top">Use if the API endpoint returns a single response. For example, <strong>Create a book</strong>, <strong>Delete a book</strong>, or <strong>Get a book</strong>.</td></tr><tr><td valign="top">​<a href="/pages/FesSKJt4gI7Ohcnknjce">Search​</a></td><td valign="top">Use if the API endpoint returns multiple items. For example, <strong>List books</strong> finds specific books according to search criteria.</td></tr><tr><td valign="top">​<a href="/pages/jSXBT5ivvik6dOITRYyh">Trigger (polling)​</a></td><td valign="top">Use to watch for any changes in your app or service. For example, <strong>Watch a new book</strong> is triggered whenever a new book has been added to the library.</td></tr><tr><td valign="top"><a href="/pages/9CFGY0YIiyNANnc32KgB">​Instant trigger (webhook)</a>​</td><td valign="top">Use if the API endpoint has a webhook available (dedicated or shared). For example, <strong>Watch a new event</strong>.</td></tr><tr><td valign="top"><a href="/pages/hTfUg6M9nP4sf1q0uOhV">​Universal​</a></td><td valign="top">Use to enable users to perform an arbitrary API call to the service. For example, <strong>Make an API call</strong> and <strong>Execute a GraphQL query</strong>.</td></tr><tr><td valign="top">​<a href="/pages/KotaOtzCwVyZma6Wx6tM">Responder​</a></td><td valign="top">Use to send processed data back to a webhook.</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://developers.make.com/custom-apps-documentation/app-components/modules.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
