Free overview: top 5 trending Steam games (last 2 weeks)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up game details by Steam App ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"appid": {
"type": "number",
"description": "Steam App ID (e.g., 730 for CS:GO)"
}
},
"required": [
"appid"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/lookup/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"appid": 0
}
}
'
Top 100 games by metric (recent activity, all-time, or owned)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"metric": {
"default": "recent",
"description": "recent = last 2 weeks, forever = all-time playtime, owned = total owners",
"type": "string",
"enum": [
"recent",
"forever",
"owned"
]
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 100
}
},
"required": [
"metric",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/top/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"metric": "recent",
"limit": 1
}
}
'
Get top games in a specific genre
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"genre": {
"type": "string",
"description": "Genre name (e.g., Indie, Action, RPG, Strategy, Simulation)"
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"genre",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/genre/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"genre": "<Genre name (e.g., Indie, Action, RPG, Strategy, Simulation)>",
"limit": 1
}
}
'
Get top games with a specific Steam tag
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"tag": {
"type": "string",
"description": "Steam tag (e.g., Multiplayer, Horror, Roguelike, Survival)"
},
"limit": {
"default": 20,
"type": "number",
"minimum": 1,
"maximum": 50
}
},
"required": [
"tag",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/tag/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"tag": "<Steam tag (e.g., Multiplayer, Horror, Roguelike, Survival)>",
"limit": 1
}
}
'
Compare metrics for multiple games by App ID
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"appids": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "number"
},
"description": "Array of Steam App IDs to compare"
}
},
"required": [
"appids"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://steam-analytics-agent-production.up.railway.app/entrypoints/compare/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"appids": [
0
]
}
}
'