Server402 marketplace

Paid API service

Slugify

Convert an English title into a lowercase URL-safe slug.

Invocation

Service ID
slugify
Method
POST
Endpoint
/api/tools/slugify
Legacy Endpoint
none
MCP Tool
slugify
Price
USD 0.05

Payment

Call 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/slugify once to receive HTTP 402 with accepts[] requirements, or create a payment with POST /api/payments using serviceId="slugify". Pay Base USDC with PAYMENT-SIGNATURE or pay XIAO with X402-Guarantee, then retry the same request.

Schema And Examples

{
  "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"
  }
}