Developer Resources

API Documentation

Integrate NILRoundup data directly into your applications, dashboards, and workflows. All endpoints return JSON and are available via standard HTTP GET requests.

Quick Start

The NILRoundup API provides read-only access to our aggregated NIL news data. No authentication is required for public endpoints. All responses follow a consistent JSON format.

Base URL:https://your-domain.com
Format:JSON

Rate Limits

Free tier: 100 requests/hour. Subscribers on the Yearly plan get unlimited API access. Contact us if you need higher limits.

Endpoints

Usage Example

javascript
// Fetch Football articles
const res = await fetch('/api/articles?sport=Football&limit=10');
const { articles, total } = await res.json();

console.log(`Found ${total} football articles`);
articles.forEach(a => console.log(a.title));