Spam detection API returning confidence scores, paid per-call via x402 on Base.
What it does
This endpoint from SlinklyLayer analyzes text content and determines whether it is spam, returning a confidence score and additional details. It is accessed via the x402 payment protocol on the Base network, settling in USDC (USD Coin) at a cost of $0.10 per request (100,000 base units with 6 decimals).
The API accepts a POST request with a JSON body containing a single required field, `content` (string), which holds the text to be analyzed. The endpoint returns a JSON response with spam classification results including a confidence score, though the exact response schema is not documented.
Documentation is minimal — the provider's landing page shows only "Hello, world!" and no docs, pricing, or README pages are available. The endpoint itself is live and responds with a valid x402 challenge, confirming it is operational. The output schema in the challenge confirms the POST method and the required `content` field, but no response schema or example outputs are provided.
Capabilities
Use cases
- —Filtering user-generated content for spam before publishing
- —Scoring inbound messages or comments for spam likelihood
- —Automated moderation pipelines that need a spam confidence score
- —Preprocessing email or chat content for spam triage
Fit
Best for
- —Agents needing per-call spam detection without subscriptions
- —Workflows requiring a simple single-field spam check
- —Crypto-native applications settling micropayments on Base
Not for
- —High-volume spam filtering where per-call costs add up (no bulk pricing documented)
- —Use cases requiring detailed spam categorization or explanation beyond a confidence score
Quick start
curl -X POST https://x402.slinkylayer.ai/api/v1/proxy/00e31e91-413d-43f0-833d-56e6b6789aab/content-detect-spam \
-H 'Content-Type: application/json' \
-H 'X-PAYMENT: <x402_payment_header>' \
-d '{"content": "Buy now! Limited time offer!!!"}'Example
Request
{
"content": "Buy now! Limited time offer!!! Click here for free prizes."
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with a clear input schema (single required 'content' string field). However, there is no documentation, no response schema, no example responses, and the provider site is essentially blank. Pricing and input schema are inferred solely from the x402 challenge.
Warnings
- —No documentation available — /docs, /api, /pricing, and /README all return 404.
- —Response schema is undocumented; the exact structure of the spam detection output is unknown.
- —Provider landing page shows only 'Hello, world!' — minimal evidence of an established service.
Citations
- —The endpoint is live and returns a valid x402 challenge with x402Version 1 on POST.https://x402.slinkylayer.ai/api/v1/proxy/00e31e91-413d-43f0-833d-56e6b6789aab/content-detect-spam
- —Payment is in USDC (asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913) on Base network with maxAmountRequired of 100000 (i.e., $0.10).https://x402.slinkylayer.ai/api/v1/proxy/00e31e91-413d-43f0-833d-56e6b6789aab/content-detect-spam
- —The required input is a JSON body with a single 'content' string field.https://x402.slinkylayer.ai/api/v1/proxy/00e31e91-413d-43f0-833d-56e6b6789aab/content-detect-spam
- —Provider landing page returns only 'Hello, world!'https://x402.slinkylayer.ai