The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "pyapi Beatport Top 100",
"nodes": [
{
"parameters": {
"cronExpression": "0 * * * *"
},
"id": "Cron1",
"name": "Every Hour",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [
260,
300
]
},
{
"parameters": {
"requestMethod": "GET",
"url": "http://python-svc:8000/beatport/top100",
"jsonParameters": true,
"options": {},
"queryParameters": {
"parameters": [
{
"name": "genre",
"value": "hard-techno"
},
{
"name": "limit",
"value": 20
}
]
}
},
"id": "HTTPReq",
"name": "Fetch Top 100",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
540,
300
]
},
{
"parameters": {
"functionCode": "// Map HTTP response (JSON array) to individual track items\nconst arr = items[0].json;\nconst out = [];\nfor (const e of arr) {\n out.push({ json: { title: e.title, artist: e.artist, bpm: e.bpm, source: e.source }});\n}\nreturn out;"
},
"id": "Function1",
"name": "To Tracks",
"type": "n8n-nodes-base.function",
"typeVersion": 2,
"position": [
800,
300
]
},
{
"parameters": {
"requestMethod": "POST",
"url": "http://python-svc:8000/tracks",
"jsonParameters": true,
"options": {},
"jsonBody": "={{$json}}"
},
"id": "HTTPReq2",
"name": "Store Track",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 4,
"position": [
1060,
300
]
}
],
"connections": {
"Every Hour": {
"main": [
[
{
"node": "Fetch Top 100",
"type": "main",
"index": 0
}
]
]
},
"Fetch Top 100": {
"main": [
[
{
"node": "To Tracks",
"type": "main",
"index": 0
}
]
]
},
"To Tracks": {
"main": [
[
{
"node": "Store Track",
"type": "main",
"index": 0
}
]
]
}
}
}
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
pyapi Beatport Top 100. Uses httpRequest. Scheduled trigger; 4 nodes.
Source: https://github.com/se-itconsulting/n8n-agent/blob/8929e55e34ecf03eb451173e96dd3f74cb00165c/flows/pyapi-beatport.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Master Agent - Orchestrator. Uses httpRequest, telegram, telegramTrigger. Scheduled trigger; 46 nodes.
Reputation Engine — Content Research Agent. Uses httpRequest. Scheduled trigger; 45 nodes.
Master Agent - Orchestrator. Uses httpRequest, telegram, telegramTrigger. Scheduled trigger; 43 nodes.
Linkedin Workflow. Uses httpRequest, googleSheets. Scheduled trigger; 39 nodes.
I prepared a detailed guide that shows the whole process of building an AI tool to analyze Instagram Reels using n8n.