Skip to main content
POST
/
api
/
user
/
institutionAbout
Fetch lazy-loaded institution about markdown
curl --request POST \
  --url https://pria.praxislxp.com/api/user/institutionAbout \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "institution": "678e99009db586c5e9f6c903"
}
'
{
  "success": true,
  "about": "<string>",
  "ainame": "<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
institution
string
required

Institution _id (must be a valid ObjectId)

Example:

"678e99009db586c5e9f6c903"

Response

About markdown returned (empty string when the institution has no description)

success
boolean
Example:

true

about
string

Markdown body of the institution's about; empty string when unset.

ainame
string

Institution's AI display name; empty string when unset.