Free overview of current social signals - try before you buy
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://social-signals-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Get top Hacker News stories with scores and comments
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://social-signals-agent-production.up.railway.app/entrypoints/hn-top/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Get top news headlines by category
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"category": {
"default": "technology",
"type": "string",
"enum": [
"business",
"entertainment",
"general",
"health",
"science",
"sports",
"technology"
]
},
"limit": {
"default": 15,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"category",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://social-signals-agent-production.up.railway.app/entrypoints/news/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"category": "business",
"limit": 1
}
}
'
Search social signals by topic across HN
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"limit": {
"default": 15,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://social-signals-agent-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "string",
"limit": 1
}
}
'
Get news from multiple categories in one call
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"categories": {
"minItems": 1,
"maxItems": 4,
"type": "array",
"items": {
"type": "string",
"enum": [
"business",
"entertainment",
"general",
"health",
"science",
"sports",
"technology"
]
}
},
"limitPerCategory": {
"default": 5,
"type": "number",
"minimum": 1,
"maximum": 10
}
},
"required": [
"categories",
"limitPerCategory"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://social-signals-agent-production.up.railway.app/entrypoints/news-multi/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"categories": [
"business"
],
"limitPerCategory": 1
}
}
'
Get aggregated signals from all sources in one call
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"hnLimit": {
"default": 15,
"type": "number",
"minimum": 1,
"maximum": 30
},
"newsCategory": {
"default": "technology",
"type": "string",
"enum": [
"business",
"entertainment",
"general",
"health",
"science",
"sports",
"technology"
]
},
"newsLimit": {
"default": 10,
"type": "number",
"minimum": 1,
"maximum": 20
}
},
"required": [
"hnLimit",
"newsCategory",
"newsLimit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://social-signals-agent-production.up.railway.app/entrypoints/all-signals/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"hnLimit": 1,
"newsCategory": "business",
"newsLimit": 1
}
}
'