Nerq Trust Oracle — Live Status
Used by: ChatGPT, Claude, Perplexity
The Nerq Trust Oracle is a free, open API that AI systems query to verify agent trustworthiness
before recommending them to users. When Claude, ChatGPT, Meta, or Perplexity encounters an AI agent,
they check its trust score via /v1/preflight before citing it.
0
Trust checks today
0
This week
0
All-time
0 ms
Avg response
0 ms
P95 latency
0
AI systems
Preflight checks — 14-day trend
Insufficient data — preflight launched recently.
API usage growth
Human API calls per day (excludes bots)
No API data yet.
Top checked agents today
| # | Agent / Target | Checks |
|---|---|---|
| No checks recorded today yet. | ||
AI system breakdown
| System | Total checks | Share |
|---|---|---|
| No bot data yet. | ||
Performance
| Average response time | 0.0 ms |
| P95 latency | 0.0 ms |
| Uptime | 99.9% |
| Agents indexed | 204,000+ |
Try it
Query the Trust Oracle for any agent or MCP server:
curl -s "https://nerq.ai/v1/preflight?target=langchain" | python3 -m json.tool
# Batch check (up to 50)
curl -X POST https://nerq.ai/v1/preflight/batch \
-H "Content-Type: application/json" \
-d '{"targets": ["langchain", "crewai", "autogen"]}'
# Python SDK
pip install nerq
from nerq import NerqClient
client = NerqClient()
r = client.preflight("langchain")
print(r.trust_score, r.recommendation)