Invocation
- Service ID
ai-resume-job-match- Method
POST- Endpoint
/api/tools/ai-resume-job-match- Legacy Endpoint
none- MCP Tool
ai_resume_job_match- Price
- XIAO 0.02
Paid API service
Compares a resume to a job description and returns match score, strengths, gaps, and interview focus areas. Paid XIAO Bailian/Qwen service. Call with the declared JSON schema; unpaid calls return HTTP 402 before model execution.
ai-resume-job-matchPOST/api/tools/ai-resume-job-matchnoneai_resume_job_matchCall 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-resume-job-match 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-resume-job-match".
{
"exampleRequest": {
"job_description": "Example job description.",
"resume": "Example resume."
},
"exampleResponse": {
"model": "qwen-plus",
"provider": "aliyun-bailian",
"result": {
"summary": "Example structured result."
},
"service_id": "ai-resume-job-match",
"status": "ok"
},
"inputSchema": {
"additionalProperties": true,
"properties": {
"context": {
"description": "Optional supporting context, source text, constraints, or background.",
"type": "string"
},
"job_description": {
"description": "Required input field job_description.",
"type": "string"
},
"language": {
"description": "Optional output language or locale.",
"type": "string"
},
"resume": {
"description": "Required input field resume.",
"type": "string"
}
},
"required": [
"resume",
"job_description"
],
"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"
}
}