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/stories

Retrieve a list of AI news stories with filtering and pagination.

Query Parameters

ParameterTypeDefaultDescription
limitnumber20Number of stories to return (max 100)
offsetnumber0Number of stories to skip
categorystring-Filter by category slug
min_impactnumber0Minimum impact score (1-10)
sortstringimpactSort 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-riskwatch

Security & Risk

model-releases

Model Releases

tools-repos

Tools & Repos

cloud-enterprise

Cloud & Enterprise

governance-regulation

Governance

breakthroughs

Breakthroughs

opinion-insight

Opinion & 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:00Z

Authentication

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