Skip to content
@siftfy

Siftfy

Calibrated spam classification, served from a single API.

Siftfy

Calibrated spam classification, served from a single API.

POST text, get back a calibrated probability between 0 and 1. At 0.7, roughly 70% of inputs with that score are actually spam — pick a threshold once and trust it. Sub-10ms p99, no model to host, no queue to drain.

Quick start

pip install siftfy
from siftfy import Siftfy

client = Siftfy(api_key="sk_live_...")
result = client.predict("Win a free iPad — click here!")
print(result.spam_probability)  # 0.97
print(result.likelihood)         # "high"

Or hit the API directly:

curl -X POST https://api.siftfy.io/v1/predict \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"text": "Win a free iPad — click here!"}'

Get a key at siftfy.io. Free tier covers 10,000 requests/month — no card.

Repos

Links

Website · Docs · Pricing · Status · Changelog · Contact

Popular repositories Loading

  1. siftfy-python siftfy-python Public

    Official Python client for the Siftfy spam-classification API.

    Python

  2. .github .github Public

    Org-level profile and shared GitHub config for Siftfy

Repositories

Showing 2 of 2 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…