POST

Critique a target response against a prompt with multiple LLMs in parallel and return a synthesized assessment. Claude, GPT, and Gemini

/v1/agent/critique

Agent-native · multi-llm

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/agent/critique
Content-Type: application/json

{
  "prompt": "Summarize this text in one sentence.",
  "target_response": "example"
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Critique a target response against a prompt with multiple LLMs in parallel and return a synthesized assessment. Claude, GPT, and Gemini.

Request schema

Body: JSON · application/json

FieldTypeDescription
promptstringrequired
target_responsestringrequired
critic_modelsarrayoptional
synthesis_modelstringoptional
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/agent/critique \
  -H "Content-Type: application/json" \
  -d '{
  "prompt": "Summarize this text in one sentence.",
  "target_response": "example"
}'

402 payment flow omitted — see Integrations for settlement.