⚡ Only 300 spots remaining • Closes in 2d 14h 32m
Stop logging into five different dashboards. This workflow runs every 24 hours and pulls key performance indicators (KPIs) from your various social media accounts using their respective APIs. It then appends a new row to an Airtable base, allowing you to track growth trends over time in one place.
This workflow is pre-configured and ready for deployment. Simply import the JSON template into your n8n instance and configure your credentials.
This is an exclusive blueprint. Copy the JSON below to use it.
PRO TIP
Always test your workflow in a development environment before pushing to production.
{
"nodes": [
{
"parameters": {
"hour": 23
},
"name": "Daily Update",
"type": "n8n-nodes-base.cron",
"typeVersion": 1,
"position": [250, 300]
},
{
"parameters": {
"resource": "user",
"operation": "get"
},
"name": "Get Twitter Stats",
"type": "n8n-nodes-base.twitter",
"typeVersion": 1,
"position": [450, 200]
},
{
"parameters": {
"resource": "channel",
"operation": "get"
},
"name": "Get YouTube Stats",
"type": "n8n-nodes-base.youtube",
"typeVersion": 1,
"position": [450, 400]
},
{
"parameters": {
"operation": "append",
"baseId": "YOUR_AIRTABLE_BASE_ID",
"table": "Engagement",
"columns": {
"mappingMode": "defineBelow",
"value": [
{
"column": "Date",
"value": "={{$now}}"
},
{
"column": "Twitter Followers",
"value": "={{$node[\"Get Twitter Stats\"].json[\"followers_count\"]}}"
},
{
"column": "YouTube Subs",
"value": "={{$node[\"Get YouTube Stats\"].json[\"subscriberCount\"]}}"
}
]
}
},
"name": "Save to Airtable",
"type": "n8n-nodes-base.airtable",
"typeVersion": 1,
"position": [700, 300]
}
],
"connections": {
"Daily Update": {
"main": [
[{"node": "Get Twitter Stats", "type": "main", "index": 0}],
[{"node": "Get YouTube Stats", "type": "main", "index": 0}]
]
},
"Get Twitter Stats": {
"main": [[{"node": "Save to Airtable", "type": "main", "index": 0}]]
},
"Get YouTube Stats": {
"main": [[{"node": "Save to Airtable", "type": "main", "index": 0}]]
}
}
}To use this, copy the JSON above and paste it directly onto your n8n canvas.
Join the elite marketers who have offloaded their entire backend to n8n. Get direct support and custom builds in our private forum.