Invocation
- Service ID
slugify- Method
POST- Endpoint
/api/tools/slugify- Legacy Endpoint
none- MCP Tool
slugify- Price
- XIAO 0.05
Paid API service
Convert an English title into a lowercase URL-safe slug.
slugifyPOST/api/tools/slugifynoneslugifyCall 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/slugify 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="slugify".
{
"exampleRequest": {
"title": "Build Paid APIs With HTTP 402"
},
"exampleResponse": {
"slug": "build-paid-apis-with-http-402"
},
"inputSchema": {
"properties": {
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"outputSchema": {
"properties": {
"slug": {
"type": "string"
}
},
"type": "object"
}
}