Invocation
- Service ID
ai-code-explainer- Method
POST- Endpoint
/api/tools/ai-code-explainer- Legacy Endpoint
none- MCP Tool
ai_code_explainer- Price
- USD 0.005
Paid API service
Explains code behavior, data flow, edge cases, and refactoring opportunities. Paid x402 Bailian/Qwen service. Call with the declared JSON schema; unpaid calls return HTTP 402 before model execution.
ai-code-explainerPOST/api/tools/ai-code-explainernoneai_code_explainerCall the endpoint without payment to receive HTTP 402 metadata. After payment is complete, retry with X-Payment-Token, an x402 payment signature, or MCP paymentToken.
Call POST /api/tools/ai-code-explainer once to receive HTTP 402 with accepts[] requirements, or create a payment with POST /api/payments using serviceId="ai-code-explainer". Pay Base USDC with PAYMENT-SIGNATURE or pay XIAO with X402-Guarantee, then retry the same request.
{
"exampleRequest": {
"code": "func add(a, b int) int { return a + b }"
},
"exampleResponse": {
"model": "qwen-plus",
"provider": "aliyun-bailian",
"result": {
"summary": "Example structured result."
},
"service_id": "ai-code-explainer",
"status": "ok"
},
"inputSchema": {
"additionalProperties": true,
"properties": {
"code": {
"description": "Required input field code.",
"type": "string"
},
"context": {
"description": "Optional supporting context, source text, constraints, or background.",
"type": "string"
},
"language": {
"description": "Optional output language or locale.",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
},
"outputSchema": {
"additionalProperties": true,
"properties": {
"model": {
"type": "string"
},
"provider": {
"type": "string"
},
"result": {
"additionalProperties": true,
"type": "object"
},
"service_id": {
"type": "string"
},
"status": {
"type": "string"
},
"upstream_id": {
"type": "string"
},
"upstream_request_id": {
"type": "string"
},
"usage": {
"additionalProperties": true,
"type": "object"
}
},
"required": [
"status",
"service_id",
"result"
],
"type": "object"
}
}