Free overview - top 5 chart artists from Last.fm
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Look up artist by name - returns data from MusicBrainz
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Artist name to look up"
}
},
"required": [
"name"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/artist/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"name": "<Artist name to look up>"
}
}
'
Search for tracks by artist or song name via iTunes
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Artist or song name"
},
"limit": {
"default": 10,
"description": "Max results (1-25)",
"type": "number"
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Artist or song name>",
"limit": 0
}
}
'
Get top charts - artists or tracks from Last.fm
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"type": {
"default": "artists",
"type": "string",
"enum": [
"artists",
"tracks"
]
},
"limit": {
"default": 20,
"description": "Max results (1-50)",
"type": "number"
}
},
"required": [
"type",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/charts/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"type": "artists",
"limit": 0
}
}
'
Find similar artists via Last.fm
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"artist": {
"type": "string",
"description": "Artist name"
},
"limit": {
"default": 10,
"type": "number"
}
},
"required": [
"artist",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/similar/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"artist": "<Artist name>",
"limit": 0
}
}
'
Comprehensive artist profile aggregating MusicBrainz, Last.fm, and Deezer data
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"artist": {
"type": "string",
"description": "Artist name"
}
},
"required": [
"artist"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-agent-production.up.railway.app/entrypoints/profile/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"artist": "<Artist name>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://music-intel-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://music-intel-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'