> For the complete documentation index, see [llms.txt](https://inspinia-technology.gitbook.io/skyplatform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://inspinia-technology.gitbook.io/skyplatform/skyplatform-technical-user-documentation/plugins/web/sample.md).

# SAMPLE

<figure><img src="https://lh7-us.googleusercontent.com/slidesz/AGV_vUcZwMZS7hMnKNVr49-euNuSRM5l2gGT9Ri0XjlDpNexFr4yPEpDfrg_FK1QXjNE46ikb8iw5FvqDcm_o4ubIvEvm3lUp7eeHRUH_vTpx2uio15APIXmSjNjuy5cxe-2cNwNIQmGmZLVvcCvLQLdfMCVOfMSRdrc=s2048?key=npIi8zOHIy81LrwrrhJT2w" alt=""><figcaption></figcaption></figure>

### SAMPLE’S DESCRIPTION

* In this setup, the **HTTP** block is used to query a virtual server. (<https://jsonplaceholder.typicode.com/posts/1>)
* This server responds with information in JSON format.

{

&#x20; "userId": 1,

&#x20; "id": 1,

&#x20; "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",

&#x20; "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"

}

* From this response, we want to extract the "userId," "title," and "body" information using the **JSON Parser**.

* Next, to send the variable information from these fields via email, we create an **HTML** template and insert the relevant data into the **Mail** block using square brackets.

* User ID: \[\[userId]]

  Title: \[\[title]]

  Body: \[\[body]]

* Finally, the **Mail** block uses this HTML template to send the extracted information as an email. The email will include the parsed details from the JSON response.


---

# 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://inspinia-technology.gitbook.io/skyplatform/skyplatform-technical-user-documentation/plugins/web/sample.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.
