Skip to main content
POST
/
api
/
user
/
systemModels
Get system AI models
curl --request POST \
  --url https://pria.praxislxp.com/api/user/systemModels \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "model": "<string>",
      "provider": "openai",
      "status": "active",
      "description": "<string>",
      "maxTokens": 123,
      "contextWindow": 123
    }
  ]
}

Authorizations

x-access-token
string
header
required

JWT token passed in x-access-token header

Response

System models retrieved successfully

success
boolean
data
object[]