Skip to main content
POST
/
api
/
admin
/
tools
List 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.

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Body

application/json
minimum
boolean

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
integer
default:1

Page number (1-based, ignored when minimum=true)

Required range: x >= 1
pageSize
integer
default:100

Number of results per page (ignored when minimum=true)

Required range: 1 <= x <= 5000

Response

Tool list retrieved successfully

success
boolean
data
object[]

Array of tools (sorted by name asc). Excludes deleted status; minimum mode also excludes inactive.

total
integer

Total number of matching tools (omitted when minimum=true)

hasMore
boolean

Whether more pages remain (omitted when minimum=true)

page
integer

Current page number (omitted when minimum=true)

pageSize
integer

Page size used (omitted when minimum=true)

message
string