TrustCore API is launching soon. Get early access to the same pattern-matching intelligence that powers Can We Trust It? โ via a simple REST API.
No spam. We'll reach out before public launch โ limited early-access spots.
TrustCore API is in development โ not yet live. This page collects early-access interest only.
What's planned
Simple integration. Honest scoring. No black boxes โ just a clear probability that a piece of content matches known scam patterns.
One endpoint, JSON in/out. Authenticate with an API key and get a scam-pattern score back in milliseconds โ no SDK required.
Returns a 0โ100 confidence score and matched pattern categories. Not a binary verdict โ your product decides the threshold.
No data retention on your users' content. Requests are scored and discarded โ nothing is stored, profiled, or sold.
Predictable rate limits, clear error codes, and honest documentation. If it doesn't work, the error message tells you why.
API design
This is an illustrative preview of the planned API โ not the final contract. Early-access partners will shape the real design.
fetch('https://api.trustcore.dev/v1/analyse', { method: 'POST', headers: { 'Authorization': 'Bearer <your-key>', 'Content-Type': 'application/json', }, body: JSON.stringify({ content: "You've won a prize! Click here...", type: 'message', // message | url | email }), })
{
"score": 87, // 0โ100 scam confidence
"verdict": "likely_scam",
"patterns": [
"prize_lure",
"urgency_cta"
],
"note": "Matches patterns โ not a definitive verdict.",
"ms": 42
}
// Your product decides the threshold.
// We score โ you act.
The score reflects how closely submitted content matches patterns from our scam database. A high score means strong pattern match โ not a guaranteed scam. Your application decides what threshold to act on.
How it will work
Leave your email below. Early-access partners get priority onboarding and direct input on the API design.
When early access opens, you'll receive credentials and a sandbox endpoint to test against real pattern data.
One REST call, standard JSON. Works from any language or platform. No SDK required โ just HTTP.
Limited spots at launch. Early-access partners shape the API โ tell us what you need and we'll build it.
No spam. We reach out before public launch โ that's it.