GitHub API

GitHub Trending developers API

List trending GitHub developers (rank, username, name, avatar, and their most popular repository), optionally filtered by programming language and time range.

POST/v1/run/github.trending_developers
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "developers": [
      {
        "avatarUrl": "https://example.com/image.jpg",
        "name": "Example title",
        "popularRepo": "example",
        "popularRepoDescription": "A short example description of this item.",
        "popularRepoUrl": "https://example.com/page",
        "rank": 1,
        "url": "https://example.com/page",
        "username": "alex_rivera"
      }
    ],
    "language": "en",
    "since": "example"
  },
  "found": true
}
Response interface
interface GithubTrendingDevelopersResponse {
  data: {
    developers: {
      avatarUrl: string;
      name: string;
      popularRepo: string;
      popularRepoDescription: string;
      popularRepoUrl: string;
      rank: number;
      url: string;
      username: string;
    }[];
    language: string;
    since: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/github.trending_developers
curl -X POST https://api.getanyapi.com/v1/run/github.trending_developers \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"language":"go","since":"weekly"}'
FieldTypeExample value
Request body
languagestring"go"Programming language to filter trending developers (e.g. javascript, python, go).
sincestring"weekly"Trending range: daily, weekly, or monthly (defaults to daily).
Response
dataobject
data.developersobject[]Populated whenever the provider has data for the entity.
data.developers[].avatarUrlstringPopulated whenever the provider has data for the entity.
data.developers[].namestring
data.developers[].popularRepostring
data.developers[].popularRepoDescriptionstring
data.developers[].popularRepoUrlstring
data.developers[].rankinteger
data.developers[].urlstringPopulated whenever the provider has data for the entity.
data.developers[].usernamestringPopulated whenever the provider has data for the entity.
data.languagestring
data.sincestringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the GitHub Trending developers API

The AnyAPI GitHub Trending developers API returns GitHub trending developers data as normalized JSON from one POST call to /v1/run/github.trending_developers. List trending GitHub developers (rank, username, name, avatar, and their most popular repository), optionally filtered by programming language and time range. AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List trending GitHub developers (rank, username, name, avatar, and their most popular repository), optionally filtered by programming language and time range. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.