This workflow follows the HTTP Request → Twitter recipe pattern — see all workflows that pair these two integrations.
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 →
{
"nodes": [
{
"name": "Request blablagues",
"type": "n8n-nodes-base.httpRequest",
"position": [
750,
250
],
"parameters": {
"url": "https://api.blablagues.net/?rub=images",
"options": {},
"responseFormat": "string"
},
"typeVersion": 1
},
{
"name": "Recup image",
"type": "n8n-nodes-base.httpRequest",
"position": [
1000,
250
],
"parameters": {
"url": "={{$node[\"Request blablagues\"].json[\"data\"][\"data\"][\"content\"][\"media\"]}}",
"options": {},
"responseFormat": "file"
},
"typeVersion": 1
},
{
"name": "At 17H image jokes",
"type": "n8n-nodes-base.cron",
"position": [
500,
250
],
"parameters": {
"triggerTimes": {
"item": [
{
"hour": 17
}
]
}
},
"typeVersion": 1
},
{
"name": "Tweet image jokes",
"type": "n8n-nodes-base.twitter",
"position": [
1250,
250
],
"parameters": {
"text": "={{$node[\"Request blablagues\"].json[\"data\"][\"data\"][\"content\"][\"text\"]}}",
"additionalFields": {
"attachments": "data"
}
},
"credentials": {
"twitterOAuth1Api": {
"name": "<your credential>"
}
},
"typeVersion": 1
}
],
"connections": {
"Recup image": {
"main": [
[
{
"node": "Tweet image jokes",
"type": "main",
"index": 0
}
]
]
},
"At 17H image jokes": {
"main": [
[
{
"node": "Request blablagues",
"type": "main",
"index": 0
}
]
]
},
"Request blablagues": {
"main": [
[
{
"node": "Recup image",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
twitterOAuth1Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Share Jokes On Twitter Automatically. Uses httpRequest, twitter. Scheduled trigger; 4 nodes.
Source: https://github.com/Zie619/n8n-workflows — 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.
AI Content Pipeline. Uses schedule, rss, httpRequest, twitter. Scheduled trigger; 7 nodes.
Social media managers, creators, and brand accounts that rely on retweets for reach but want an automated, hands-off cleanup after campaigns to keep profiles tidy and on-brand.
This workflow monitors brand mentions across multiple platforms (Twitter/X, Reddit, News) and automatically detects reputation crises based on sentiment analysis and trend detection. Multi-platform mo
Creator: Summer Chang
FootballAnalytics AI Brain Workflow. Uses httpRequest, twitter. Scheduled trigger; 10 nodes.