Skip to main content
POST
/
api
/
embeddings
/
process
Process embeddings
curl --request POST \
  --url https://api.example.com/api/embeddings/process
{
  "claims_processed": 123,
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.minns.ai/llms.txt

Use this file to discover all available pages before exploring further.

Manually trigger embedding generation for claims that haven’t been embedded yet. This is useful after bulk event ingestion.

Query parameters

limit
integer
default:"10"
Batch size — number of claims to process in this request.

Response

claims_processed
integer
Number of claims that had embeddings generated.
success
boolean
Whether the processing succeeded.
{
  "claims_processed": 10,
  "success": true
}