Developers & Agents
Everything on AI-Portal is available programmatically: a free read-only REST API and an MCP server. No API key, no sign-up. Rate limit: 60 requests per minute per IP.
Quickstart
One request, no auth. Get all landmark model releases of 2026:
curl "https://www.ai-portal.ai/api/v1/releases?year=2026&landmark=true"
Python:
import requests
r = requests.get(
"https://www.ai-portal.ai/api/v1/releases",
params={"provider": "anthropic", "limit": 5},
)
for item in r.json()["items"]:
print(item["date"], item["title"])JavaScript:
const res = await fetch("https://www.ai-portal.ai/api/v1/glossary?q=rag");
const { items } = await res.json();
console.log(items[0].definition);Endpoints
GET /api/v1/releasesAI model and product releases, newest first · query params: category, provider, year, landmark, limit
GET /api/v1/regulationsAI regulations and compliance status · query params: status, jurisdiction
GET /api/v1/glossaryGenAI glossary terms and definitions · query params: q, category
GET /api/v1/newsLatest curated GenAI news (weekday refresh) · query params: limit
Full machine-readable spec: /openapi.json (OpenAPI 3.1). All endpoints return JSON, send CORS headers, and return structured JSON errors with a code, message, and hint.
MCP server
AI agents (Claude, ChatGPT, and any MCP-compatible client) can use AI-Portal data as tools via the Model Context Protocol. The server is stateless Streamable HTTP at https://www.ai-portal.ai/mcp and exposes four tools: list_releases, list_regulations, search_glossary, and get_latest_news.
Claude Code:
claude mcp add --transport http ai-portal https://www.ai-portal.ai/mcp
Generic MCP client config:
{
"mcpServers": {
"ai-portal": {
"type": "http",
"url": "https://www.ai-portal.ai/mcp"
}
}
}Fair use
The API is free for personal, research, and commercial use. Please respect the rate limit (60 req/min per IP), cache responses where you can (data changes at most daily), and attribute AI-Portal when you republish the data. Questions or higher-volume needs: zeev.grinberg@ness-tech.co.il.