Skip to main content
POST
/
prompts
/
view
View AI analysis prompt
curl --request POST \
  --url https://ai.platform.arb.inc/prompts/view \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "documentID": "statementOfClaim",
  "ruleSet": "small-claims-v1"
}
'
{
  "id": 42,
  "created": "2026-01-15T10:30:00.000Z",
  "updated": "2026-01-20T14:45:00.000Z",
  "documentID": "statementOfClaim",
  "ruleSet": "small-claims-v1",
  "prompt": "Analyze the statement of claim and extract key facts, legal arguments, and relief requested.",
  "active": true,
  "triggerOnDocket": true,
  "triggerOnDraft": false,
  "includeEvidence": true,
  "includeFullCase": false
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
documentID
string
required

Document type identifier

Required string length: 1 - 50
Example:

"statementOfClaim"

ruleSet
string
required

Rule set identifier

Required string length: 1 - 50
Example:

"small-claims-v1"

Response

Prompt details

id
integer
Example:

42

created
string<date-time>
Example:

"2026-01-15T10:30:00.000Z"

updated
string<date-time>
Example:

"2026-01-20T14:45:00.000Z"

documentID
string
Example:

"statementOfClaim"

ruleSet
string
Example:

"small-claims-v1"

prompt
string
Example:

"Analyze the statement of claim and extract key facts, legal arguments, and relief requested."

active
boolean
Example:

true

triggerOnDocket
boolean
Example:

true

triggerOnDraft
boolean
Example:

false

includeEvidence
boolean
Example:

true

includeFullCase
boolean
Example:

false