Developer resources

Documentation

API reference · MCP tools · Integration guides

Integration Surfaces

Three ways to build on TickerTrust data

REST API

Base URL
https://api.tickertrust.com/v1
Authentication
Bearer token · header: Authorization
Rate limits
10–120 req/min · 500–50,000 req/day — see pricing for per-tier limits
Endpoint categories
analysis · screener · watchlist · catalysts · portfolio

MCP Integration

Status
Coming soon — not yet available
Planned tools
19 analysis & screening tools

Webhooks

Event types
score.updated · catalyst.detected · alert.triggered
Payload format
application/json · UTF-8
Signature verification
HMAC-SHA256 · header: X-TickerTrust-Signature
Delivery
Retry with exponential backoff · 3 attempts

Quick Start

Fetch a TrustScore analysis in three lines

Quick start · JavaScript
GET /v1/analysis/:symbol
const res = await fetch('https://api.tickertrust.com/v1/analysis/AAPL', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
})
const { data } = await res.json()
console.log(data.trust_score) // 78

Explore endpoints

Full endpoint catalog with schemas, response examples, and integration walkthroughs.

Browse endpoints