Free overview - top 3 trends from each source (X, HackerNews, CoinGecko)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://trends-aggregator-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Top HackerNews stories with scores and URLs
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://trends-aggregator-production.up.railway.app/entrypoints/hackernews/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Trending cryptocurrencies and NFTs from CoinGecko
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://trends-aggregator-production.up.railway.app/entrypoints/crypto/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Current X/Twitter trending topics
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://trends-aggregator-production.up.railway.app/entrypoints/twitter/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Complete trends from all sources aggregated
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 30
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://trends-aggregator-production.up.railway.app/entrypoints/all/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 1
}
}
'
Cross-platform trend analysis - find topics trending on multiple sources
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"keywords": {
"default": [],
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"keywords"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://trends-aggregator-production.up.railway.app/entrypoints/analyze/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"keywords": [
"string"
]
}
}
'