Skip to content
gentic.news — AI News Intelligence Platform
Connecting to the Living Graph…
Live · Public · No API key

The canonical AI-industry
data layer for AI agents.

A real database — verified entities, relationships, predictions, benchmarks, news. Plug it into Claude Desktop, Cursor, Cline, or any HTTP client.

4,942
Entities
5,093
Relationships
4,061
Articles
174
Predictions
Free · CC BY 4.0

Download the sample dataset

The top 100 entities (by mention count) and every relationship between them — JSON, ready to inspect, ready to feed into your agent. Updated every 6 hours.

Download sample100 entities · their edges · ~50KB

Plug in.

Four runtimes. Same API. Pick yours and copy the snippet.

Claude Desktop
MCP server (paste into mcp_servers.json)
{
  "mcpServers": {
    "gentic-living-graph": {
      "command": "npx",
      "args": ["-y", "@gentic/mcp-server"],
      "env": { "GENTIC_API_BASE": "https://gentic.news/api/v1" }
    }
  }
}
Cursor
Add as a custom REST connector
{
  "name": "gentic-living-graph",
  "url": "https://gentic.news/api/v1"
}
Cline
.clinerules — teach Cline the API
# .clinerules — give Cline access to gentic.news
- When the user asks about an AI company, model, benchmark, or
  prediction, query https://gentic.news/api/v1 first.
- Endpoints to know:
    GET /entities/{slug}         full entity profile
    GET /entities/trending       what is moving this week
    GET /predictions             active predictions
    GET /benchmarks              ranked leaderboard
    GET /lab/sample              full sample dataset
- The API is public, no auth, JSON only.
curl / any HTTP
Public REST — JSON in, JSON out
# Top 100 entities + their internal edges (cached 6h)
curl -L https://gentic.news/api/v1/lab/sample \
  -o gentic-living-graph-sample.json

# Trending entities this week
curl https://gentic.news/api/v1/entities/trending?limit=20

# Compare two entities head-to-head
curl https://gentic.news/api/v1/entities/compare/openai/anthropic
🔑

No auth, no API key, no signup.

The Living Graph API is public and rate-limited (~60 req/min/IP — generous enough for dev, indexing agents, and personal projects). For higher volume, production SLAs, or webhooks → see “Production access” below.

Endpoints.

Every endpoint below returns JSON, supports CORS, and is cached at the edge. Full OpenAPI at /api/v1/openapi.json.

MethodPath
GET/api/v1/lab/sample
Free sample dataset — top 100 entities + their edges (JSON download, cached 6h)
GET/api/v1/lab/graph/stats
Live counters for the Living Graph (entities, relationships, findings, cycles)
GET/api/v1/lab/graph/feed
Recent additions to the graph: new entities, new relationships, new findings
GET/api/v1/lab/schema
Full schema — tables, key columns, cycle types, memory types
GET/api/v1/lab/mcp/config
Paste-ready MCP / connector config for Claude Desktop, Cursor, OpenAPI
GET/api/v1/articles
Paginated article feed across all sections
GET/api/v1/articles/trending
Top trending articles (by score, last 24h)
GET/api/v1/entities
Browse all AI entities (paginated, filterable by type)
GET/api/v1/entities/{slug}
Full entity profile — relationships, timeline, sentiment, mentions
GET/api/v1/entities/trending
Entities surging in mention-count this week
GET/api/v1/entities/compare/{a}/{b}
Head-to-head comparison of two entities with evidence
GET/api/v1/predictions
Active and resolved predictions, sortable by confidence
GET/api/v1/predictions/summary
Aggregate prediction accuracy + outcome breakdown
GET/api/v1/benchmarks
Ranked leaderboards (code models, reasoning, vision, agents)
GET/api/v1/podcast
Daily AI intelligence podcast feed (RSS-compatible)
GET/api/v1/search
Full-text search across articles + entities
GET/api/v1/narratives
Curated cross-article narratives (multi-day stories)
GET/api/v1/jobs/skills
Most-in-demand AI skills, ranked by job-posting frequency
GET/api/v1/computer-use/leaderboard
Computer-use agent rankings (OSWorld, Visual WebArena)
Production access

Building something serious on top of the graph?

We work with a small number of partners who need higher rate limits, webhooks for new entities and relationships, custom slices of the graph, or a private MCP deployment. Drop us a note and tell us what you're building.

We respond within 48h. No sales call required.

Free public API · CC BY 4.0 attribution · Built by gentic.news · About · Disclaimer