Test the Review Fraud Detection API in Real-Time
v1.0.0-sandboxAuthentication: All endpoints require an API key in the X-API-Key header.
Check API status and system health. No authentication required for this endpoint.
curl -X GET "https://trustcirs.com/api/health"
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 '{...}'
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 '{...}'
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 '{...}'