# Prism Org Radar API (https://www.socialcrawl.dev/platforms/prism/org-radar) > Lists a GitHub org's repositories, picks the top N by stars (forks/archived filtered), and runs the repo/dossier composite on each in parallel, folded into an org-level rollup. Metered: 1cr to resolve the org + 5cr per repo dossiered; the unused per-repo credits are refunded down to the dossiers that actually succeeded. The org repo-list leg is critical (unknown org → 404 + full refund). TL;DR: `GET /v1/prism/org-radar` costs 26 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `org` | yes | The GitHub org login or a github.com/{org} URL. | | `repos` | no | How many top repos to dossier (1–10, default 5) — drives the metered price. | | `sort` | no | Repo ranking: stars (default), updated, or pushed. (stars \| updated \| pushed) | | `include` | no | Optional leg toggles. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/prism/org-radar?org=vercel" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### What is the SocialCrawl GitHub Organization API (Prism Org Radar)? GET /v1/prism/org-radar takes a GitHub org and returns its footprint: the top repos, each expanded into a full dossier of releases, issue load, and the top request and complaint, rolled up into one response. One call replaces enumerating repos and pulling a dossier for each yourself. ### What does the repos parameter do? repos sets how many of the org's top repositories to expand, and sort controls how they are ranked (for example by activity or stars) before expansion. include toggles which parts of each dossier are returned. org is the only required parameter. ### What is in each repo dossier? Each expanded repo carries its recent releases, issue load, and the top surfaced request and complaint mined from issues, so you see both shipping cadence and what users are asking for. The org-level rollup aggregates those signals across the selected repos. ### How much does an org-radar call cost? Each call is a flat 26 credits covering the repo enumeration and every expanded dossier. New accounts get 100 free credits with no credit card. If a strict majority of the legs fail, part of the cost is refunded automatically, and if all legs fail the full 26 credits come back. ### Why use org-radar instead of the GitHub API directly? One call replaces listing an org's repos and then making a separate dossier request per repo, plus the rollup you would write to summarize them. It returns a ready org-level view of releases, issue load, and top requests, so you assess a whole organization without paginating repo by repo. See the full Prism API: https://www.socialcrawl.dev/platforms/prism ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How do I get a GitHub org's top repos with releases and issue load in one API call? - What API summarizes a whole GitHub organization's repos at once? - GitHub organization monitoring API with per-repo dossiers