Invocation
- Service ID
slugify- Method
POST- Endpoint
/api/tools/slugify- Legacy Endpoint
none- MCP Tool
slugify- Price
- USD 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. After payment is complete, retry with X-Payment-Token, an x402 payment signature, or MCP paymentToken.
Create a payment with POST /api/payments using serviceId="slugify", then pass the returned token in X-Payment-Token or MCP paymentToken.
{
"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"
}
}