Invocation
- Service ID
ai-email-drafter- Method
POST- Endpoint
/api/tools/ai-email-drafter- Legacy Endpoint
none- MCP Tool
ai_email_drafter- Price
- XIAO 0.01
Paid API service
Drafts emails with subject lines, body copy, personalization, and follow-up variants. Paid XIAO Bailian/Qwen service. Call with the declared JSON schema; unpaid calls return HTTP 402 before model execution.
ai-email-drafterPOST/api/tools/ai-email-drafternoneai_email_drafterCall the endpoint without payment to receive HTTP 402 metadata. If payment is required, open xiaopay.top to obtain XIAO, create the guarantee, then retry with X-Payment-Token, an XIAO guarantee header, or MCP paymentToken.
Call POST /api/tools/ai-email-drafter once to receive HTTP 402 with accepts[] requirements. Open https://xiaopay.top to obtain XIAO, create an AI wallet guarantee for merchant_id=aivps.lat and merchant_order_id=payment.paymentId, then retry with X402-Guarantee. If you need the legacy reusable token flow, create a payment with POST /api/payments using serviceId="ai-email-drafter".
{
"exampleRequest": {
"goal": "Example goal."
},
"exampleResponse": {
"model": "qwen-plus",
"provider": "aliyun-bailian",
"result": {
"summary": "Example structured result."
},
"service_id": "ai-email-drafter",
"status": "ok"
},
"inputSchema": {
"additionalProperties": true,
"properties": {
"context": {
"description": "Optional supporting context, source text, constraints, or background.",
"type": "string"
},
"goal": {
"description": "Required input field goal.",
"type": "string"
},
"language": {
"description": "Optional output language or locale.",
"type": "string"
}
},
"required": [
"goal"
],
"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"
}
}