Security enhancements to IP Vault and new Gemini 3.1 Flash Live STS model for Convo mode
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,
"page": 1,
"pageSize": 100
}
'{
"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": [
"research"
],
"status": "active",
"created": "2023-11-07T05:31:56Z",
"unavailable": true,
"unavailableReason": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Returns the tool list. Two modes:
unavailable/unavailableReason enrichment for Google-service tools based on the
caller’s institution Google Cloud configuration.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 both deleted and inactive tools.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,
"page": 1,
"pageSize": 100
}
'{
"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": [
"research"
],
"status": "active",
"created": "2023-11-07T05:31:56Z",
"unavailable": true,
"unavailableReason": "<string>"
}
],
"total": 123,
"hasMore": true,
"page": 123,
"pageSize": 123,
"message": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
JWT token passed in x-access-token header
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.
Page number (1-based, ignored when minimum=true)
x >= 1Number of results per page (ignored when minimum=true)
1 <= x <= 5000Tool list retrieved successfully
Array of tools (sorted by name asc). Excludes deleted status; minimum mode also excludes inactive.
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?