๐Ÿงช SANDBOX ENVIRONMENT โ€” Pilot API Preview โ€” Contact for Production Access

Test the Review Fraud Detection API in Real-Time

v1.0.0-sandbox
๐Ÿ”‘

Authentication: All endpoints require an API key in the X-API-Key header.

(Request key from founder)
GET /api/health

Check API status and system health. No authentication required for this endpoint.

curl -X GET "https://trustcirs.com/api/health"
200 OK

                
POST /api/v1/analyze

Analyze a single review for fraud signals. Returns CTS score, classification, and flags.

curl -X POST "https://trustcirs.com/api/v1/analyze" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{...}'
200 OK

                
POST /api/v1/batch

Analyze multiple reviews in a single request. Returns aggregated results with cryptographic Proof Pack including leaf hashes for verification.

curl -X POST "https://trustcirs.com/api/v1/batch" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{...}'
200 OK

                
POST /api/v1/verify

Verify a Proof Pack. Recomputes Merkle root from leaf hashes and confirms integrity. Use the proof_pack from /batch response.

curl -X POST "https://trustcirs.com/api/v1/verify" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{...}'
200 OK