Platform · Developer
GitHub
Users, repositories, repository search, followers and trending.
- Endpoints
- 9
- Base price
- 1 cr
- Source
- Official API + provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/github/profile | Profile | 1 |
| GET /v1/github/posts | Post[] | 1 |
| GET /v1/github/post | Post | 1 |
| GET /v1/github/search | SearchResult[] | 1 |
| GET /v1/github/followers | Profile[] | 1 |
| GET /v1/github/following | Profile[] | 1 |
| GET /v1/github/trending/profiles | Profile[] | 1 |
| GET /v1/github/pull-requests | Post[] | 1 |
| GET /v1/github/trending | Post[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | GitHub username. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/profile \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=torvalds"Posts
1 creditList a profile's recent posts.
| handle | required | GitHub username. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/posts \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=torvalds"Post
1 creditGet a single post by id.
| id | required | owner/repository |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/post \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "id=<id>"Search
1 creditSearch one platform.
| q | required | What to search for. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/search \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "q=vector database"Profiles and people
Followers
1 creditAccounts that follow a profile.
| handle | required | Username without the @, or the profile URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/followers \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=torvalds"Following
1 creditAccounts a profile follows.
| handle | required | Username without the @, or the profile URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/following \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=torvalds"Trending profiles
1 creditPopular creators or developers right now.
| country | optional | ISO country code, e.g. US. |
| language | optional | Programming language (GitHub). |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/trending/profiles \
-H "Authorization: Bearer $CRAWLFEED_KEY"Posts and feeds
Pull requests
1 creditPull requests a developer opened, newest first.
| handle | required | GitHub username or profile URL. |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/pull-requests \
-H "Authorization: Bearer $CRAWLFEED_KEY" \
--data-urlencode "handle=torvalds"Trending
1 creditWhat is trending on the platform right now.
| country | optional | ISO country code, e.g. US. |
| language | optional | Programming language (GitHub). |
| cursor | optional | From meta.next_cursor, to get the next page. |
| enrich | optional | arabic: add dialect, sentiment, entities and topics (+3 credits). |
curl -G https://api.crawlfeed.dev/v1/github/trending \
-H "Authorization: Bearer $CRAWLFEED_KEY"Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.