Skip to main content
POST
/
prompts
/
list
List AI analysis prompts
curl --request POST \
  --url https://ai.platform.arb.inc/prompts/list \
  --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 information.",
    "active": true,
    "triggerOnDocket": true,
    "triggerOnDraft": false,
    "includeEvidence": true,
    "includeFullCase": false
  }
]

Authorizations

Authorization
string
header
required

access token

Body

application/json
documentID
string

Filter by document type identifier

Maximum string length: 50
Example:

"statementOfClaim"

ruleSet
string

Filter by rule set identifier

Maximum string length: 50
Example:

"small-claims-v1"

Response

200 - application/json

List of prompts

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 information."

active
boolean
Example:

true

triggerOnDocket
boolean
Example:

true

triggerOnDraft
boolean
Example:

false

includeEvidence
boolean
Example:

true

includeFullCase
boolean
Example:

false