TrustedChain

API Access

Integrate with TrustedChain

Get an API key

Sign up and receive a key instantly. Keys start at 100 requests per day against our RAG, models, and artifact database — need more? Ask through the contact form and we approve increases per key.

Create account

Your API key — shown once, store it safely:

Already registered? Retrieve your key

Your API key:

Integration

One endpoint, three check functions

POST your artifact (domain, IP, URL, hash, email, certificate text) and receive the same report the site generates: verdict, confidence, factors, and evidence. Choose the function with mode: model (certificate model + IOC feeds only, fastest), rag (datasets + AI report), or internet (adds the model's own threat-intel knowledge).

curl -s https://trustedchain.ai/api/v1/analyze \
  -H "Content-Type: application/json" \
  -H "X-API-Key: tc_your_key_here" \
  -d '{"query": "suspicious-domain.example", "mode": "model"}'

# → {
#     "verdict": "suspicious" | "not_suspicious",
#     "confidence": 0.95,
#     "summary": "…",
#     "factors": ["…"],
#     "evidence": [{"source": "ioc-feeds", "type": "IP Address", "detail": "…"}],
#     "daily_limit": 100,
#     "used_today": 7
#   }

Responses over your daily limit return HTTP 429 with your usage. Limits reset at midnight UTC.