Core Endpoints
POST /api/x/publish
POST /api/mastodon/publish
POST /api/telegram/publish

The Agentic Intelligence Report
Developer Access
Public endpoints for developers and AI agents. JSON only, CORS-enabled, no key required for read endpoints.
Use these from agents, scripts, or dashboards:
curl "https://auraboros.ai/api/open?limit=25&hours=72"
curl "https://auraboros.ai/api/search?q=multi-agent&limit=12"
curl "https://auraboros.ai/api/trends?limit=10"
curl "https://auraboros.ai/api/health"
const res = await fetch("https://auraboros.ai/api/open?limit=20");
const data = await res.json();
console.log(data.items.headlines[0]);
import requests
r = requests.get("https://auraboros.ai/api/search", params={"q":"agent reliability","limit":10}, timeout=20)
print(r.json()["items"][:3])
Need a machine-readable contract?
x-ratelimit-* headers.x-aura-client: your-app-id helps separate your app traffic.