curl --request POST \
--url https://pria.praxislxp.com/api/admin/tools \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"minimum": true,
"institution": "<string>",
"page": 1,
"pageSize": 100
}
'import requests
url = "https://pria.praxislxp.com/api/admin/tools"
payload = {
"minimum": True,
"institution": "<string>",
"page": 1,
"pageSize": 100
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({minimum: true, institution: '<string>', page: 1, pageSize: 100})
};
fetch('https://pria.praxislxp.com/api/admin/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pria.praxislxp.com/api/admin/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'minimum' => true,
'institution' => '<string>',
'page' => 1,
'pageSize' => 100
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pria.praxislxp.com/api/admin/tools"
payload := strings.NewReader("{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pria.praxislxp.com/api/admin/tools")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pria.praxislxp.com/api/admin/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"responseLength": 123,
"responseDurationMs": 123,
"success": true,
"_id": "<string>",
"description": "<string>",
"instructions": "<string>",
"argument_1": "<string>",
"argument_2": "<string>",
"argument_3": "<string>",
"argument_4": "<string>",
"argument_5": "<string>",
"argument_6": "<string>",
"isArray": false,
"rtEnabled": false,
"rtOnly": false,
"categories": [],
"status": "active",
"created": "2023-11-07T05:31:56Z",
"unavailable": true,
"unavailableReason": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}List tools
Returns the tool list. Two modes:
- Full mode (default): paginated, super admin only. Returns full tool objects with
unavailable/unavailableReasonenrichment for Google-service tools based on the caller’s institution Google Cloud configuration. - Minimum mode (
minimum=true): no pagination, available to any authenticated user. Returns a lightweight projection (name, _id, status, description, rtEnabled, rtOnly, categories) used by RT dropdown selectors. Excludes bothdeletedandinactivetools. Passinstitutionto additionally get Google-service availability flags (unavailable/unavailableReason/locked) computed for that institution.
curl --request POST \
--url https://pria.praxislxp.com/api/admin/tools \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"minimum": true,
"institution": "<string>",
"page": 1,
"pageSize": 100
}
'import requests
url = "https://pria.praxislxp.com/api/admin/tools"
payload = {
"minimum": True,
"institution": "<string>",
"page": 1,
"pageSize": 100
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({minimum: true, institution: '<string>', page: 1, pageSize: 100})
};
fetch('https://pria.praxislxp.com/api/admin/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://pria.praxislxp.com/api/admin/tools",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'minimum' => true,
'institution' => '<string>',
'page' => 1,
'pageSize' => 100
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://pria.praxislxp.com/api/admin/tools"
payload := strings.NewReader("{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://pria.praxislxp.com/api/admin/tools")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://pria.praxislxp.com/api/admin/tools")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"minimum\": true,\n \"institution\": \"<string>\",\n \"page\": 1,\n \"pageSize\": 100\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>",
"responseLength": 123,
"responseDurationMs": 123,
"success": true,
"_id": "<string>",
"description": "<string>",
"instructions": "<string>",
"argument_1": "<string>",
"argument_2": "<string>",
"argument_3": "<string>",
"argument_4": "<string>",
"argument_5": "<string>",
"argument_6": "<string>",
"isArray": false,
"rtEnabled": false,
"rtOnly": false,
"categories": [],
"status": "active",
"created": "2023-11-07T05:31:56Z",
"unavailable": true,
"unavailableReason": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Authorizations
JWT token passed in x-access-token header
Body
When true, returns a lightweight list (name, _id, status, description, rtEnabled, rtOnly, categories) with NO pagination. Used by RT dropdown selectors. Available to all authenticated users; full mode requires super admin.
Minimum mode only. Institution to compute Google-service availability for —
rows gain unavailable/unavailableReason/locked based on that
institution's Google Cloud configuration (used by the instance editor's
Connector MCP and Tools tab). Super admins may target any institution;
other callers are limited to their own.
Page number (1-based, ignored when minimum=true)
x >= 1Number of results per page (ignored when minimum=true)
1 <= x <= 5000Response
Tool list retrieved successfully
Array of tools (sorted by name asc). Excludes deleted status; minimum mode also excludes inactive.
Show child attributes
Show child attributes
Total number of matching tools (omitted when minimum=true)
Whether more pages remain (omitted when minimum=true)
Current page number (omitted when minimum=true)
Page size used (omitted when minimum=true)
Was this page helpful?