Free overview - top 3 items from each platform (HN, GitHub, Lobsters)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Top Hacker News stories with scores, comments, and metadata
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/hn-top/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Trending GitHub repositories by language and timeframe
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"language": {
"default": "",
"type": "string"
},
"since": {
"default": "daily",
"type": "string",
"enum": [
"daily",
"weekly",
"monthly"
]
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 25
}
},
"required": [
"language",
"since",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/github-trending/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"language": "string",
"since": "daily",
"limit": 1
}
}
'
Hot articles from Lobste.rs tech community
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 25
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/lobsters-hot/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Combined tech feed from all sources, sorted by recency
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/tech-feed/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Search HN stories and GitHub repos for a specific topic
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"limit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 20
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://tech-signals-agent-production.up.railway.app/entrypoints/topic-search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "string",
"limit": 1
}
}
'