/github/org/{org}apiKey2 credits/requestRetrieve a GitHub organization profile
Returns a public GitHub organization profile (company-side enrichment).
Required params: org:path
API Reference
Use Crawlora's GitHub API endpoints to extract supported public GitHub data as structured JSON. This documentation covers 17 active endpoints including Retrieve a GitHub organization profile, List a GitHub organization's public repositories, Retrieve a GitHub repository, List a repository's contributors, and related APIs. Developers can use these endpoints for monitoring, enrichment, research dashboards, internal data pipelines, and agent-native workflows without maintaining platform-specific scraping code. Each endpoint page documents authentication, request parameters such as org, owner, repo, q, cURL examples, response examples, response schemas, errors, credit cost, and Playground testing. Send requests to the Crawlora API with an x-api-key header, review usage and plan limits on pricing, and test safe sample requests in Playground before moving the workflow into production.
Choose an endpoint, send an authenticated request with the x-api-key header, and inspect the normalized JSON response. The examples below use the public Crawlora API base URL and the same endpoint catalog used by Playground.
curl -X GET "https://api.crawlora.net/api/v1/github/search/repositories?q=coffee&sort=stars&order=asc&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"These endpoint cards are generated from the active Crawlora endpoint catalog, including method, path, auth mode, credit cost, parameter summary, docs, and Playground links.
/github/org/{org}apiKey2 credits/requestReturns a public GitHub organization profile (company-side enrichment).
Required params: org:path
/github/org/{org}/reposapiKey2 credits/requestReturns a page of an organization's public repositories (company tech stack).
Required params: org:path
/github/repo/{owner}/{repo}apiKey2 credits/requestReturns public detail for a single repository (the core project object).
Required params: owner:path, repo:path
/github/repo/{owner}/{repo}/contributorsapiKey2 credits/requestReturns a page of a repository's contributors (who builds a project).
Required params: owner:path, repo:path
/github/repo/{owner}/{repo}/forksapiKey2 credits/requestReturns a page of a repository's public forks (adopter signal).
Required params: owner:path, repo:path
/github/repo/{owner}/{repo}/languagesapiKey2 credits/requestReturns the language byte breakdown for a repository, sorted by bytes descending (tech fingerprint).
Required params: owner:path, repo:path
/github/repo/{owner}/{repo}/releasesapiKey2 credits/requestReturns a page of a repository's releases (momentum/health signal).
Required params: owner:path, repo:path
/github/search/repositoriesapiKey3 credits/requestSearches public GitHub repositories (market/competitive discovery). Unauthenticated search is rate limited to roughly 10 requests per minute.
Required params: q:query
/github/search/usersapiKey3 credits/requestSearches public GitHub users (developer discovery). Unauthenticated search is rate limited to roughly 10 requests per minute.
Required params: q:query
/github/trendingapiKey3 credits/requestReturns the repositories on GitHub's trending page (market discovery).
Required params: None
/github/trending/developersapiKey3 credits/requestReturns the developers on GitHub's trending developers page (market discovery).
Required params: None
/github/user/{username}apiKey3 credits/requestReturns a public GitHub user's profile plus user-published social links. Email is included only when the user has made it public on their profile.
Required params: username:path
/github/user/{username}/eventsapiKey2 credits/requestReturns a page of a user's recent public events, normalized to type, repository, and timestamp (freshness signal).
Required params: username:path
/github/user/{username}/followersapiKey2 credits/requestReturns a page of the public accounts following a GitHub user.
Required params: username:path
/github/user/{username}/followingapiKey2 credits/requestReturns a page of the public accounts a GitHub user follows.
Required params: username:path
/github/user/{username}/pinnedapiKey3 credits/requestReturns the repositories a user pinned on their public profile (showcase signal). Empty when the user pinned nothing.
Required params: username:path
/github/user/{username}/reposapiKey2 credits/requestReturns a page of a user's public repositories (tech-stack signal).
Required params: username:path
| Endpoint | API path | Method | Credits | Required params | Docs | Playground |
|---|---|---|---|---|---|---|
| Retrieve a GitHub organization profile | /github/org/{org} | GET | 2 credits/request | org:path | View docs | Try endpoint |
| List a GitHub organization's public repositories | /github/org/{org}/repos | GET | 2 credits/request | org:path | View docs | Try endpoint |
| Retrieve a GitHub repository | /github/repo/{owner}/{repo} | GET | 2 credits/request | owner:path, repo:path | View docs | Try endpoint |
| List a repository's contributors | /github/repo/{owner}/{repo}/contributors | GET | 2 credits/request | owner:path, repo:path | View docs | Try endpoint |
| List a repository's public forks | /github/repo/{owner}/{repo}/forks | GET | 2 credits/request | owner:path, repo:path | View docs | Try endpoint |
| Retrieve a repository's language breakdown | /github/repo/{owner}/{repo}/languages | GET | 2 credits/request | owner:path, repo:path | View docs | Try endpoint |
| List a repository's releases | /github/repo/{owner}/{repo}/releases | GET | 2 credits/request | owner:path, repo:path | View docs | Try endpoint |
| Search public GitHub repositories | /github/search/repositories | GET | 3 credits/request | q:query | View docs | Try endpoint |
| Search public GitHub users | /github/search/users | GET | 3 credits/request | q:query | View docs | Try endpoint |
| List trending GitHub repositories | /github/trending | GET | 3 credits/request | None | View docs | Try endpoint |
| List trending GitHub developers | /github/trending/developers | GET | 3 credits/request | None | View docs | Try endpoint |
| Retrieve a GitHub user profile | /github/user/{username} | GET | 3 credits/request | username:path | View docs | Try endpoint |
| List a GitHub user's recent public activity | /github/user/{username}/events | GET | 2 credits/request | username:path | View docs | Try endpoint |
| List a GitHub user's followers | /github/user/{username}/followers | GET | 2 credits/request | username:path | View docs | Try endpoint |
| List who a GitHub user follows | /github/user/{username}/following | GET | 2 credits/request | username:path | View docs | Try endpoint |
| List a GitHub user's pinned repositories | /github/user/{username}/pinned | GET | 3 credits/request | username:path | View docs | Try endpoint |
| List a GitHub user's public repositories | /github/user/{username}/repos | GET | 2 credits/request | username:path | View docs | Try endpoint |