Back to AI Briefing
Enterprise API
API Documentation
Access AI Briefing data programmatically. Build custom integrations, dashboards, and workflows with our REST API.
Quick Start
Fetch the latest AI stories with a simple GET request:
curl -X GET "https://frontofai.com/api/briefing/v1/stories?limit=10" \
-H "Content-Type: application/json"Endpoints
GET
/api/briefing/v1/storiesRetrieve a list of AI news stories with filtering and pagination.
Query Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | number | 20 | Number of stories to return (max 100) |
offset | number | 0 | Number of stories to skip |
category | string | - | Filter by category slug |
min_impact | number | 0 | Minimum impact score (1-10) |
sort | string | impact | Sort order: impact, latest, oldest |
Response
{
"data": [
{
"id": "uuid",
"title": "Story Title",
"summary_short": "Brief summary...",
"summary_manager": "Executive summary...",
"it_impact_score": 8,
"source_name": "TechCrunch",
"source_url": "https://...",
"published_at": "2024-01-15T10:00:00Z",
"category_details": [
{ "slug": "security-riskwatch", "name": "Security & Risk" }
]
}
],
"meta": {
"total": 150,
"limit": 20,
"offset": 0,
"hasMore": true
}
}Categories
Available category slugs for filtering:
security-riskwatchSecurity & Risk
model-releasesModel Releases
tools-reposTools & Repos
cloud-enterpriseCloud & Enterprise
governance-regulationGovernance
breakthroughsBreakthroughs
opinion-insightOpinion & Insight
Rate Limits
Request Limits
- • Free: 30 requests per minute
- • Pro: 100 requests per minute
- • Enterprise: Custom limits
Rate limit headers are included in every response:
X-RateLimit-Remaining: 29
X-RateLimit-Reset: 2024-01-15T10:01:00ZAuthentication
API Keys (Enterprise)
Enterprise customers receive API keys for authenticated access with higher rate limits.
curl -X GET "https://frontofai.com/api/briefing/v1/stories" \
-H "Authorization: Bearer YOUR_API_KEY"Need Enterprise Access?
Get dedicated API keys, higher rate limits, custom integrations, and priority support for your organization.
Contact Sales