Repository detail
API · /github-api
GitHub API
Read GitHub in real time — no token, no OAuth. Look up any repository by owner/name for its full detail (stars, forks, watchers, open issues, language, license, topics, default branch, timestamps) and pull its commits, contributors, language breakdown, releases, branches, tags, open/closed issues and decoded README. Look up any user or organization profile, list a user's repositories, and run GitHub search across repositories, users and issues/PRs with sort and order. Pass repo as "owner/name" (or a github.com URL). Every call is live (no cache) and returns the upstream GitHub REST shape, paginated with page + per_page (max 100). 16 endpoints. The unauthenticated GitHub limit is 60 requests/hour per IP — this service routes every call through a rotating residential proxy, so each request gets a fresh budget and you are not rate-limited. Built for dev dashboards, OSS analytics, dependency and supply-chain tooling, and repo monitoring. No upstream token, no cache.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 1667 ms
- Server probes · 24h
- Subscribers
- 4,890
- active
- Total calls
- 368
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 2,000 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 2,000 calls/month
- 2 req/sec
- All 16 read endpoints
- No credit card
Starter
€10.50 /month
- 55,000 calls / month
- 8 requests / second
- Hard cap (429 above quota, no overage)
- 55k calls/month
- 8 req/sec
- Repos, users, search
- Email support
Pro
€30.50 /month
- 270,000 calls / month
- 20 requests / second
- Hard cap (429 above quota, no overage)
- 270k calls/month
- 20 req/sec
- OSS-analytics pipelines
- Priority support
Mega
€68.50 /month
- 1,300,000 calls / month
- 50 requests / second
- Hard cap (429 above quota, no overage)
- 1.3M calls/month
- 50 req/sec
- Supply-chain / monitoring scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Crypto Coin Profile API
Live project profile, developer activity and official links for any cryptocurrency — what a coin is, not what it costs — served from the public CoinGecko feed with no key and nothing cached. The profile endpoint returns the project's description, market-cap rank, categories (Layer 1, DeFi, Meme and more), genesis date, hashing algorithm, country of origin, the community sentiment split, and the all-time high and low with their dates — Ethereum is a rank-2 Smart Contract Platform that launched in 2015 with an all-time high near $4,946. The developer endpoint returns the GitHub development activity investors use to gauge a project's health: stars, forks and watchers, the count of total and closed issues, merged pull requests and recent commits — Bitcoin's repositories carry over seventy thousand stars and thousands of merged pull requests. The links endpoint returns every official link: homepage, whitepaper, block explorers, GitHub repositories, the subreddit, Twitter handle, Telegram and forums. This is the project-research and due-diligence layer for any crypto research, screener, wallet or portfolio app. Live from CoinGecko, nothing stored. Distinct from price, market-cap and OHLC APIs — this is the project profile, developer activity and links. 4 endpoints.
api.oanor.com/coinprofile-api
Programming Languages API
The language definitions GitHub uses to recognise code (the open-source Linguist data) as an API — a clean reference for syntax highlighting, file-type detection, repository dashboards and developer tooling. For each of 800+ languages the API returns its type (programming, markup, data or prose), its brand colour (the hex GitHub paints it), the file extensions associated with it, common aliases, the GitHub language id and the editor (ace) mode. Look a language up by name or alias (golang resolves to Go), reverse-look-up which language(s) own a file extension (.py → Python; .h → C, C++, Objective-C), list the languages of a type, search, or list them all. Distinct from languages-api (ISO 639 human languages) — this is the programming-language reference. Served from memory — always fast.
api.oanor.com/proglang-api
Codeberg API
Live profile and repository data from Codeberg as an API — the community-run, Forgejo-powered git host and a leading open-source alternative to GitHub. Look up any user or organisation for their profile and social reach (followers, following, starred repositories, join date, location and website), open any repository for its stats (stars, forks, watchers, open issues, primary language, size and dates), or search Codeberg's repositories ranked by stars. The git-forge community layer for developer, social and dashboard apps. Live, no key, no cache. Distinct from GitHub and GitLab APIs and from package-registry APIs — this is the Codeberg platform's own community and project data.
api.oanor.com/codeberg-api
Bitbucket API
Read Bitbucket Cloud in real time — no token, no OAuth. Look up any public repository by "workspace/slug" for its full detail (description, language, size, fork policy, mainbranch, timestamps) and pull its commits, branches, tags, pull requests, watchers, forks and file tree (browse any directory at any branch/tag/commit). Inspect any workspace profile and list its public repositories. Pass repo as "workspace/slug" (or a bitbucket.org URL). Every call is live (no cache) and returns the upstream Bitbucket 2.0 shape, paginated with page + pagelen (max 100). 11 endpoints. Calls are routed through a rotating residential proxy so per-IP rate limits never bite. The sibling of our GitHub and GitLab APIs — built for dev dashboards, OSS analytics and repo monitoring across the Atlassian ecosystem. No upstream token, no cache.
api.oanor.com/bitbucket-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for GitHub API?
What's the rate limit for GitHub API?
How much does GitHub API cost?
Can I cancel my subscription anytime?
Is GitHub API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/github-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/github-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/github-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/github-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.