get_github_trending_developers
Retrieve trending GitHub developers filtered by programming language, spoken language, and time period using a straightforward API for actionable developer insights.
Instructions
Get trending developers on github
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Language to filter repositories by | |
since | No | Time period to filter repositories by | |
spoken_language | No | Spoken language to filter repositories by |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Language to filter repositories by",
"type": "string"
},
"since": {
"description": "Time period to filter repositories by",
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string"
},
"spoken_language": {
"description": "Spoken language to filter repositories by",
"type": "string"
}
},
"type": "object"
}