# Frequently Asked Questions

Freshpaint stores data in a cookie that can be retrieved, parsed, and used as needed for your use case. Some of the data stored includes attribution parameters such as UTMs or click identifiers, `device_id`, and more.&#x20;

The data lives on the `freshpaint`object in the browser window, and is accessible via `freshpaint.cookie` , where you can get specific properties through the `freshpaint.cookie.props` .

Accessing the raw cookie, such as through the `document.cookie`method is not supported, since the cookie is compressed on page load in order to streamline performance and prevent issues with the size of the cookie. This is why we suggest accessing the data directly through `freshpaint.cookie.props`.


---

# 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://documentation.freshpaint.io/reference/faqs.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.
