Datto|Autotask PSA Rest API
autotask · Developer Tools
Datto|Autotask PSA Rest API API
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
ZoneInformationApiIntegration_QueryZoneInformation
https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation?user=example
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Secret | example |
| UserName | testuser |
| ApiIntegrationCode | example |
curl -X GET "https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation?user=example" \ -H "Secret: example" \ -H "UserName: testuser" \ -H "ApiIntegrationCode: example"
import requests
params = {
"user": "example"
}
headers = {
"Secret": "example",
"UserName": "testuser",
"ApiIntegrationCode": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation');
url.searchParams.set('user', 'example');
const response = await fetch(url, {
headers: {
'Secret': 'example',
'UserName': 'testuser',
'ApiIntegrationCode': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation")
q := baseURL.Query()
q.Set("user", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Secret", "example")
req.Header.Set("UserName", "testuser")
req.Header.Set("ApiIntegrationCode", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation")
uri.query = URI.encode_www_form({
"user" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Secret"] = "example"
req["UserName"] = "testuser"
req["ApiIntegrationCode"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ZoneInformation?" . http_build_query([
"user" => "example"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Secret: example",
"UserName: testuser",
"ApiIntegrationCode: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
ApiVersion_ApiVersionInformation
https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Secret | example |
| UserName | testuser |
| ApiIntegrationCode | example |
curl -X GET "https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation" \ -H "Secret: example" \ -H "UserName: testuser" \ -H "ApiIntegrationCode: example"
import requests
headers = {
"Secret": "example",
"UserName": "testuser",
"ApiIntegrationCode": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation",
headers=headers,
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation';
const response = await fetch(url, {
headers: {
'Secret': 'example',
'UserName': 'testuser',
'ApiIntegrationCode': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation"
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Secret", "example")
req.Header.Set("UserName", "testuser")
req.Header.Set("ApiIntegrationCode", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Secret"] = "example"
req["UserName"] = "testuser"
req["ApiIntegrationCode"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autotask.net/v1/VersionInformation";
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Secret: example",
"UserName: testuser",
"ApiIntegrationCode: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
ActionTypes_UrlParameterQuery
https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query?search=hello
Hover any highlighted part to learn what it does
Headers — extra info sent with the request
| Secret | example |
| UserName | testuser |
| ApiIntegrationCode | example |
curl -X GET "https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query?search=hello" \ -H "Secret: example" \ -H "UserName: testuser" \ -H "ApiIntegrationCode: example"
import requests
params = {
"search": "hello"
}
headers = {
"Secret": "example",
"UserName": "testuser",
"ApiIntegrationCode": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query",
params=params,
headers=headers,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query');
url.searchParams.set('search', 'hello');
const response = await fetch(url, {
headers: {
'Secret': 'example',
'UserName': 'testuser',
'ApiIntegrationCode': 'example'
},
});
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query")
q := baseURL.Query()
q.Set("search", "hello")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
req.Header.Set("Secret", "example")
req.Header.Set("UserName", "testuser")
req.Header.Set("ApiIntegrationCode", "example")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query")
uri.query = URI.encode_www_form({
"search" => "hello"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
req["Secret"] = "example"
req["UserName"] = "testuser"
req["ApiIntegrationCode"] = "example"
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/autotask.net/v1/V1.0/ActionTypes/query?" . http_build_query([
"search" => "hello"
]);
$opts = ["http" => [
"method" => "GET",
"header" => implode("\r\n", [
"Secret: example",
"UserName: testuser",
"ApiIntegrationCode: example"
]),
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Datto|Autotask PSA Rest API?
Datto|Autotask PSA Rest API is a Developer Tools API. Developers commonly use developer tools APIs for:
- automating code review and quality checks
- integrating CI/CD pipelines and build systems
- managing feature flags and A/B tests
- monitoring errors and application performance
- generating and validating test data
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Datto|Autotask PSA Rest API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide