Skip to main content
POST
/
generate-award
Generate arbitration award
curl --request POST \
  --url https://ai.platform.arb.inc/generate-award \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "Analyze all documents and exhibits to determine the outcome and provide detailed reasoning for the arbitration award.",
  "documents": [
    {
      "gsUrl": "gs://platform-cases/2025/case-123/statement-of-claim.pdf",
      "contentType": "application/pdf"
    }
  ],
  "exhibits": [
    {
      "gsUrl": "gs://platform-cases/2025/case-123/exhibit-1.pdf",
      "contentType": "application/pdf",
      "number": "1",
      "party": "claimant",
      "description": "Parking agreement contract"
    }
  ]
}
'
{
  "outcome": "The arbitrator finds in favor of the claimant and awards damages in the amount of $300.00.",
  "reasons": "The evidence clearly shows that the respondent entered into a valid parking agreement and failed to make payments as required. The claimant provided sufficient documentation of the breach."
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
prompt
string
required

AI instructions for generating the award

Required string length: 1 - 50000
Example:

"Analyze all documents and exhibits to determine the outcome and provide detailed reasoning for the arbitration award."

documents
object[]
required

List of case docket documents

exhibits
object[]
required

List of case docket exhibits

Response

200 - application/json

Generated arbitration award

outcome
string
Example:

"The arbitrator finds in favor of the claimant and awards damages in the amount of $300.00."

reasons
string
Example:

"The evidence clearly shows that the respondent entered into a valid parking agreement and failed to make payments as required. The claimant provided sufficient documentation of the breach."