Easily automate and manage your social media presence at scale. Our unified API lets you publish, schedule, and monitor content across multiple platforms all from a single integration.
Integrieren Sie die leistungsstarken Funktionen der Social-Media-Management-API von RobinReach in Ihre Anwendungen. Unsere gut dokumentierte API ermöglicht eine nahtlose Automatisierung und benutzerdefinierte Workflows.
curl -X POST \
"https://robinreach.com/api/v1/posts?api_key=my-api-key-value&brand_id=brand-id" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"content": "Big sale coming this Friday!",
"media_urls": [
"https://s3.amazonaws.com/bucket/media1.jpg"
],
"publish_time": "2026-05-19T12:00:00Z",
"social_profile_ids": [
101
],
"title": "Friday Mega Sale"
}'
Alles, was Sie für beeindruckende Social-Media-Anwendungen benötigen
Gebouwd volgens moderne standaarden, maakt gebruik van JSON-payloads en wordt ondersteund door duidelijke en uitgebreide documentatie.
Ontworpen voor eerlijk gebruik en schaalbaarheid — met transparante gebruiksheaders en duidelijke limieten per abonnement.
Voorspelbare versies zorgen voor soepele upgrades en langdurige integratie zonder onderbreking.
Folgen Sie diesen Schritten, um mit der Verwendung der RobinReach-API zu beginnen
Erstellen Sie ein RobinReach-Konto, um Ihre API-Schlüssel zu erhalten
Verbinden Sie Ihre sozialen Medien-Konten über OAuth
Starten Sie mit der Verwendung unserer Dokumentation
An n8n community node for the RobinReach API — schedule and manage social media posts across 10+ platforms directly from n8n.
1.0.0 — Initial release with comprehensive RobinReach API integration
From n8n Community Nodes Panel (recommended):
Settings → Community Nodes → Install → enter n8n-nodes-robinreach
Or from npm:
npm install n8n-nodes-robinreach
Add a new credential in n8n: search for "RobinReach API", enter your API key, and select environment (Production/Development).
1. List Your Brands
{ "operation": "listBrands" }
2. Get Connected Social Profiles
{ "operation": "listSocialProfiles", "brandId": "brand_123_abc" }
3. Create and Publish a Post
{
"operation": "createPost",
"brandId": "brand_123_abc",
"content": "Hello, world! 🌍 #automation",
"socialProfileIds": ["profile_123", "profile_456"],
"publishType": "publish_now"
}
Platform-specific settings (examples):
"platformSettings": {
"facebook": { "postType": "post", "comment": "Auto-comment after posting..." },
"instagram": { "postType": "post", "comment": "What do you think?" },
"twitter": { "replies": ["Follow-up tweet for thread"] }
}
{
"operation": "createPost",
"content": "Check out this!",
"mediaUrls": ["https://your-domain.com/image1.jpg"],
"publishType": "schedule",
"scheduledDate": "2024-12-25",
"scheduledTime": "09:00",
"timezone": "America/New_York"
}
See platform-specific requirements (e.g., Instagram business account, Facebook page admin access). Plan limits apply (Bloom, Thrive, Enterprise). Monitor usage in the RobinReach dashboard.
The node surfaces API errors with useful messages. Common HTTP responses include:
Daily automated posts, RSS → social, and content repurposing workflows are supported — use triggers and chain RobinReach nodes for full automation.
Repo and dev steps:
git clone https://github.com/RobinReach/RobinReach-N8N.git npm install npm run build npm run lint