> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/server/it/web-interface/utilities/api-documentation.md).

# Documentazione API

Istruzioni dettagliate sulla REST API di Devolutions Server sono disponibili nella sezione ***Apps and companion*** ***tools*** all'interno dell'interfaccia web di Devolutions Server in ***Help & Tools*** – ***API documentation***.

<figure><img src="https://webdevolutions.blob.core.windows.net/docs/DVLS6005_2026_2.png" alt=""><figcaption></figcaption></figure>

Ecco come si presenta la finestra della REST API:

![](https://cdnweb.devolutions.net/docs/DVLS6008_2025_2.png)

Per connettersi e utilizzare la REST API, faccia riferimento allo script bash di esempio riportato di seguito. Per ogni chiamata API al server, si assicuri di quanto segue:

* Sostituisca `https://url` con l'URL specifico di Devolutions Server.
* Sostituisca `GUID-OF-VAULT` e `GUID-OF-ENTRY` con i GUID corrispondenti.

{% hint style="info" %}
In questa versione dell'API, le password possono essere recuperate solo dalle voci di tipo Credenziali. Si noti che le voci di sottotipo (PasswordList, ad esempio) non sono supportate.
{% endhint %}

```bash

# Log in and get the token
authResponse=$(curl -s -X POST "https://url/api/v1/login" \
    -H "Content-Type: application/json" \
    -d '{
        "appKey": "appkey",
        "appSecret": "appsecret"
    }')
token=$(echo $authResponse | jq -r '.tokenId')

# Check if the token was successfully obtained
if [ -z "$token" ] || [ "$token" = "null" ]; then
  echo "Failed to login or obtain token."
  exit 1
fi

# Request data using the token
response=$(curl -s -X GET "https://url/api/v1/vault/GUID-OF-VAULT/entry/GUID-OF-ENTRY" \
    -H "Content-Type: application/json" \
    -H "tokenId: $token")

echo $response | jq

# Log out
curl -s -X POST "https://url/api/v1/logout" \
    -H "Content-Type: application/json" \
    -H "tokenId: $token" \
    -H "Content-Length: 0"
```


---

# 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.devolutions.net/server/it/web-interface/utilities/api-documentation.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.
