Free overview - trending GitHub repos this week
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get detailed GitHub repository information
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"owner": {
"type": "string",
"description": "Repository owner (e.g., \"facebook\")"
},
"repo": {
"type": "string",
"description": "Repository name (e.g., \"react\")"
}
},
"required": [
"owner",
"repo"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/repo/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"owner": "<Repository owner (e.g., \"facebook\")>",
"repo": "<Repository name (e.g., \"react\")>"
}
}
'
Get npm package info with download stats
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"package": {
"type": "string",
"description": "npm package name (e.g., \"react\", \"lodash\")"
}
},
"required": [
"package"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/npm-package/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"package": "<npm package name (e.g., \"react\", \"lodash\")>"
}
}
'
Get PyPI (Python) package info
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"package": {
"type": "string",
"description": "PyPI package name (e.g., \"requests\", \"numpy\")"
}
},
"required": [
"package"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/pypi-package/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"package": "<PyPI package name (e.g., \"requests\", \"numpy\")>"
}
}
'
Get GitHub developer profile with activity
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"username": {
"type": "string",
"description": "GitHub username"
}
},
"required": [
"username"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/developer/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"username": "<GitHub username>"
}
}
'
Compare multiple npm packages (downloads, deps, age)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"packages": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string"
},
"description": "npm package names to compare"
}
},
"required": [
"packages"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"packages": [
"string"
]
}
}
'
Analyze a GitHub repo with its package dependencies
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"owner": {
"type": "string",
"description": "Repository owner"
},
"repo": {
"type": "string",
"description": "Repository name"
}
},
"required": [
"owner",
"repo"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/stack-analysis/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"owner": "<Repository owner>",
"repo": "<Repository name>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://code-intelligence-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'