واجهة برمجة تطبيقات RESTful قوية
مصممة وفق أحدث المعايير، تعتمد على تنسيقات JSON، ومدعومة بوثائق تفصيلية وسهلة الفهم للمطورين.
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.
دمج ميزات إدارة التواصل الاجتماعي القوية لروبن ريتش في تطبيقاتك. API الموثوق به مع وثائق موضوعية يمكن من ذلك التمكن من التواصل الاجتماعي بسهولة.
curl -X POST \
"https://robinreach.com/api/v1/posts?api_key=my-api-key&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"
}'
كل ما تحتاجه لبناء تطبيقات تواصل اجتماعي مثالية
مصممة وفق أحدث المعايير، تعتمد على تنسيقات JSON، ومدعومة بوثائق تفصيلية وسهلة الفهم للمطورين.
مصمم للعدالة وقابلية التوسع، مع رؤوس استخدام شفافة وحدود واضحة حسب الخطة.
إصدارات متوقعة تضمن ترقيات سلسة وتكاملًا طويل الأمد بدون انقطاع.
اتبع هذه الخطوات لبدء استخدام API روبن ريتش
إنشاء حساب روبن ريتش للحصول على مفاتيح API
ربط حساباتك عبر OAuth
ابدأ إجراء طلبات API باستخدام وثائقنا
An n8n community node for the RobinReach API — schedule and manage social media posts across 10+ platforms directly from n8n workflows.
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 via npm:
npm install n8n-nodes-robinreach
In n8n, add a new credential, search for RobinReach API, enter your API key, and select your environment (Production or 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"
}
"platformSettings": {
"facebook": { "postType": "post", "comment": "Auto-comment..." },
"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"
}
Platform-specific requirements apply (e.g., Instagram requires a business account, Facebook requires page admin access). Plan limits (Bloom, Thrive, Enterprise) apply. Monitor usage in your RobinReach dashboard.
The node surfaces API errors with descriptive messages. Common HTTP status codes:
401 — Invalid API key or authentication failed403 — Plan limits exceeded or insufficient permissions400 — Invalid request data or missing required parameters404 — Resource not found429 — Rate limit exceededgit clone https://github.com/RobinReach/RobinReach-N8N.git
npm install
npm run build
npm run lint
api_key=your-api-key. Obtain your key from the RobinReach dashboard. API access requires a Bloom or Thrive plan.
n8n-nodes-robinreach. You can also install via npm: npm install n8n-nodes-robinreach.
publishType to schedule and provide scheduledDate, scheduledTime, and timezone fields. IANA timezone strings are supported (e.g., America/New_York).