Free, public API access to DailyDevLists content. Rate limited to 60 requests per minute per IP address.
Base URL: https://dailydevlists.com/api
No authentication required. All endpoints are publicly accessible.
All endpoints are rate limited to prevent abuse:
All responses include rate limit information in headers:
X-RateLimit-Limit: 60 - Maximum requests allowedX-RateLimit-Remaining: 45 - Requests remaining in windowX-RateLimit-Reset: 1234567890 - Unix timestamp when limit resetsRetry-After: 30 - Seconds until you can retry (429 responses only)/api/healthSystem health check endpoint. Returns database connectivity, PG listener status, and system metrics.
{
"status": "healthy",
"timestamp": "2025-10-20T12:00:00.000Z",
"version": "1.0.0",
"buildSha": "abc123",
"checks": {
"database": {
"status": "healthy",
"latency": "15ms"
},
"pgListener": {
"status": "active"
}
},
"uptime": 3600.5,
"environment": "production"
}{
"status": "unhealthy",
"timestamp": "2025-10-20T12:00:00.000Z",
"checks": {
"database": {
"status": "unhealthy",
"error": "Connection refused"
},
"pgListener": {
"status": "inactive"
}
}
}curl https://dailydevlists.com/api/health
/api/feedsReturns a list of all visible content feeds (YouTube channels, topics, categories).
[
{
"slug": "ai-engineering",
"name": "AI Engineering",
"category": "AI"
},
{
"slug": "devops-sre",
"name": "DevOps & SRE",
"category": "DevOps"
},
{
"slug": "react-frontend",
"name": "React & Frontend",
"category": "Frontend"
}
]slug - URL-friendly feed identifiername - Human-readable feed namecategory - Feed category (AI, DevOps, Frontend, Backend, Web3, Infrastructure)curl https://dailydevlists.com/api/feeds
Returned when rate limit is exceeded. Wait for the time specified in Retry-After header.
{
"error": "Too many requests",
"message": "Rate limit exceeded. Please try again later.",
"limit": 60,
"reset": "2025-10-20T12:01:00.000Z"
}Returned when an unexpected error occurs. Retry after a short delay.
{
"error": "Failed to fetch feeds"
}X-RateLimit-Remaining header before making requestsHave questions or need help? We'd love to hear from you:
Email: support@dailydevlists.com
By using the DailyDevLists API, you agree to our Terms of Service and Privacy Policy.
The API is provided "as is" without warranties. We reserve the right to modify or discontinue the API at any time.
Start integrating DailyDevLists into your application today.