> For the complete documentation index, see [llms.txt](https://docs.airim.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.airim.co/getting-started/embeddable.md).

# Embeddables

### FAQs Embeddable

To show FAQs anywhere in your page you can use airim's FAQ Embeddable element.&#x20;

First you have to include the following script. Preferable inside the head tag of your page.

```markup
<script src="https://cdn.airim.co/airim-suggest.dist.js" async></script>
```

Then you can place the following tag anywhere in your page. &#x20;

```markup
<airim-suggest aid="your_account_id"></airim-suggest>
```

The element will automatically show top 10 FAQs for that page. It will auto adjust its font, width and background colour according the to page and its parent element.

#### Getting your account id

You can find your account id [here](https://app.airim.co/home/settings/widget/jscode). Screenshot below for reference

![airim account id](/files/-LbO1AGRMZ9JzMFjIhY8)

#### Customising the embed

There are more options that is supported by the suggest element. See reference below

```markup
You can limit the number of FAQs shown by the widget by using
the limit attribute
<airim-suggest aid="your_account_id" limit="7"/>

You can change the color of the text by using the color attribute.
The attribute can be any valid hex code.
<airim-suggest aid="your_account_id" limit="7" color="#4c4c4c"/>

Chainging font size
<airim-suggest aid="your_account_id" limit="7" color="#4c4c4c" fontSize="18"/>
```


---

# 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://docs.airim.co/getting-started/embeddable.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.
