← All APIs

Dev API

Programmatic access to the Dev feed: GitHub repos gaining traction (scraped from an upstream GitHub-activity board and enriched from the GitHub API), with board context and metadata for spotting new technologies and patterns.

Conventions

dev / feed

GitHub repos gaining traction, scraped from an upstream GitHub-activity board (Most Stars + Top users' latest star) and enriched from the GitHub API. One row per repo with board context (which sections surfaced it, best rank) and GitHub metadata (stars, language, topics, license, created_at - the "is this new" signal).

Parameters

section
board section: most_stars | top_users_star
language
GitHub primary language, e.g. TypeScript, Rust, Python
owner_type
user | org
created_days
only repos created within N days (the brand-new signal)
min_stars
minimum stargazer count
has_topics
1 = only repos that declare GitHub topics
q
free-text across full_name, description, topics, summary
sort
recent_seen (default) | stars | newest | name
limit
1-200, default 50
offset
pagination offset, default 0

Example

curl -s 'https://intelligence.flatnine.co/api?method=dev&endpoint=feed&created_days=30&sort=stars&limit=20'

Response shape

{"repos": [{"full_name": "owner/repo", "url": "https://github.com/owner/repo", "sections": ["top_users_star"], "best_rank": 1, "first_seen": "...", "github": {"stars": 33557, "language": "TypeScript", "topics": [...], "license": "MIT", "created_at": "2026-01-18T21:45:37Z", "owner_type": "User", ...}, "classification": null}], "total": 13, "limit": 20, "offset": 0}