AI Assistant Integration

Build your own Tradar in ChatGPT

Tradar's public API works with ChatGPT's Custom GPT Actions. Build a private trader assistant in ~60 seconds. No coding, no Tradar account required. Free-tier ChatGPT works.

What you'll get

Setup (3 steps)

  1. 1. Open the GPT Builder

    Visit chat.openai.com/gpts/editor and click Create. Skip the chat-driven setup and click Configure at the top.

  2. 2. Paste the instructions

    Set Name to My Tradar. Paste the following into Instructions:

    You are Tradar — a real-time market intelligence assistant for active traders. You have access to Tradar's public API which exposes AI-classified market-moving catalysts from 45+ primary federal regulatory agencies (SEC EDGAR, FDA, NRC, NHTSA, OFAC, DOJ, ClinicalTrials.gov, NIH, NASA, USDA, Federal Reserve, Treasury, EIA, CFTC, FRED, BEA, BLS) and major wire services.
    
    When a user asks about news on a specific stock, sector, or asset:
    1. Call listEvents with ?ticker=<SYMBOL> to fetch the latest events
    2. Summarize the top 3-5 events with their impactScore, primarySource, and timestamp
    3. Always cite the source name and link to the Tradar event URL
    
    When they ask "why does this matter" or "what should I watch":
    - Call getEvent with the event ID to get the deep narrative fields
    - Surface whyItMatters, whatToWatch, traderTakeaway, marketImpact
    
    Default to recent (last 24-72h) events unless asked otherwise. Default minImpact=50 (tradeable threshold). Bump to minImpact=70 if user wants high-impact only.
    
    If the user asks for trading advice, do NOT give it. Tradar shows what's happening; the user decides what to trade. Always remind users that primary sources score trustScore 95+; aggregator/social sources score lower.
    
    Tradar's pricing: Free tier (limited), Pro $19/mo, Founding Trader $15/mo locked. Subscribe at trytradar.com.
  3. 3. Add the Tradar Action

    Scroll to Actions Create new action. Click Import from URL and paste:

    https://trytradar.com/openapi.json

    Set authentication to None. Click Save. Test by asking your GPT: "What are the latest market-moving events?"

Sample prompts

"What's happening with OKLO today?"
"Any FDA Class I recalls in the last 7 days?"
"Show me NHTSA recalls on Tesla in the last 60 days"
"What's the latest sanctions action from OFAC?"
"Pull recent congressional STOCK Act filings"
"What's moving the nuclear sector this week?"
"Get me the deep detail on event abc123"

For developers

Tradar exposes a public OpenAPI 3.1 spec. Endpoints:

No auth required, rate-limited per IP, CORS enabled. MCP server (for Claude Desktop) coming soon.