Platform · Developer

GitHub

Users, repositories, repository search, followers and trending.

Endpoints
9
Base price
1 cr
Source
Official API + provider

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/github/profileProfile
handlerequiredGitHub username.
enrichoptionalarabic: 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 credit

List a profile's recent posts.

GET/v1/github/postsPost[]
handlerequiredGitHub username.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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 credit

Get a single post by id.

GET/v1/github/postPost
idrequiredowner/repository
enrichoptionalarabic: 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>"

Profiles and people

Followers

1 credit

Accounts that follow a profile.

GET/v1/github/followersProfile[]
handlerequiredUsername without the @, or the profile URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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 credit

Accounts a profile follows.

GET/v1/github/followingProfile[]
handlerequiredUsername without the @, or the profile URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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"

Posts and feeds

Pull requests

1 credit

Pull requests a developer opened, newest first.

GET/v1/github/pull-requestsPost[]
handlerequiredGitHub username or profile URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: 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"

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.