Skip to main content

Gildea API

Gildea ingests thousands of market intelligence signals from across the web, decomposes them into independently verified text units, and serves them through a structured REST API. Every claim, sentence, and argument is verified using NLI models and regression scoring. Only data with verdict=pass is served.

What makes Gildea different

Full verified decomposition — not just article metadata. Every signal is broken down into its constituent thesis sentences, argument sentences, summary sentences, and claims. Each text unit is independently verified against source evidence. Trust contract — only verdict=pass data is served. If verification fails, the text unit is excluded. You never see unverified claims. Entity intelligence — not just mentions. Entities have trend analytics (momentum, z-scores, persistence), theme distributions, and co-occurrence relationships.

Quick example

curl -H "X-API-Key: gld_your_key" \
  "https://api.gildea.ai/v1/signals?entity=NVIDIA&limit=5"
{
  "data": [
    {
      "signal_id": "sig_01JABCDEF123456789",
      "title": "NVIDIA H200 Shipments Surge as Supply Eases",
      "content_type": "analysis",
      "decomposition_text": "NVIDIA's H200 shipments increased significantly in Q4...",
      "verified_text_unit_count": 12,
      "tags": {
        "value_chain": ["AI Infrastructure"],
        "market_force": ["Supply & Demand"]
      }
    }
  ],
  "has_more": true,
  "next_cursor": "eyJwdWJsaXNoZWRfYXQiOi..."
}