{"openapi":"3.1.0","info":{"title":"Hermes Social","description":"Social media publishing and analytics: LinkedIn, TikTok, Instagram, Facebook, Twitter/X, Telegram, WhatsApp, Discord.","version":"1.0.0"},"servers":[{"url":"https://hermes.squaremcp.com"}],"security":[{"bearerAuth":[]}],"components":{"schemas":{},"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer"}}},"paths":{"/api/whatsapp/send":{"post":{"operationId":"whatsapp_send_message","summary":"Send WhatsApp message","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["to","message"],"properties":{"to":{"type":"string","description":"Phone number in international format"},"message":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Message sent"}}}},"/api/linkedin/profile":{"get":{"operationId":"linkedin_get_profile","summary":"Get LinkedIn profile","parameters":[{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Profile info"}}}},"/api/linkedin/post":{"post":{"operationId":"linkedin_create_post","summary":"Create LinkedIn post","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["text"],"properties":{"text":{"type":"string"},"visibility":{"type":"string","enum":["PUBLIC","CONNECTIONS"]},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Post created"}}}},"/api/linkedin/video":{"post":{"operationId":"linkedin_upload_video","summary":"Upload video and create LinkedIn post","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["video_url","text"],"properties":{"video_url":{"type":"string","description":"Publicly accessible URL of the MP4 video"},"text":{"type":"string"},"visibility":{"type":"string","enum":["PUBLIC","CONNECTIONS"]},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Video uploaded and posted"}}}},"/api/telegram/message":{"post":{"operationId":"telegram_send_message","summary":"Send Telegram message","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["chat_id","text"],"properties":{"chat_id":{"type":"string"},"text":{"type":"string"},"parse_mode":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Message sent"}}}},"/api/telegram/updates":{"get":{"operationId":"telegram_get_updates","summary":"Get Telegram updates","parameters":[{"name":"limit","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Updates list"}}}},"/api/discord/guilds":{"get":{"operationId":"discord_get_guilds","summary":"List Discord servers","parameters":[{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Guild list"}}}},"/api/discord/message":{"post":{"operationId":"discord_send_message","summary":"Send Discord message","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["channel_id","content"],"properties":{"channel_id":{"type":"string"},"content":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Message sent"}}}},"/api/discord/messages":{"get":{"operationId":"discord_get_messages","summary":"Get Discord messages","parameters":[{"name":"channel_id","in":"query","required":true,"schema":{"type":"string"}},{"name":"limit","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Message list"}}}},"/api/instagram/profile":{"get":{"operationId":"instagram_get_profile","summary":"Get Instagram profile","parameters":[{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Profile info"}}}},"/api/instagram/media":{"get":{"operationId":"instagram_get_media","summary":"Get Instagram media","parameters":[{"name":"limit","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Media list"}}}},"/api/instagram/post":{"post":{"operationId":"instagram_create_post","summary":"Create Instagram post","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["image_url"],"properties":{"image_url":{"type":"string"},"caption":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Post created"}}}},"/api/facebook/page":{"get":{"operationId":"facebook_get_page","summary":"Get Facebook Page profile","parameters":[{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Page info"}}}},"/api/facebook/posts":{"get":{"operationId":"facebook_get_posts","summary":"Get Facebook Page posts","parameters":[{"name":"limit","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Post list"}}}},"/api/facebook/post":{"post":{"operationId":"facebook_create_post","summary":"Publish text post to Facebook Page","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["message"],"properties":{"message":{"type":"string"},"link":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Post created"}}}},"/api/facebook/photo":{"post":{"operationId":"facebook_create_photo_post","summary":"Publish photo post to Facebook Page","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["image_url"],"properties":{"image_url":{"type":"string"},"caption":{"type":"string"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Photo posted"}}}},"/api/facebook/video":{"post":{"operationId":"facebook_create_video_post","summary":"Publish video post to Facebook Page","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["video_url"],"properties":{"video_url":{"type":"string","description":"Publicly accessible URL of the video"},"description":{"type":"string","description":"Video description text"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Video posted"}}}},"/api/twitter/search":{"get":{"operationId":"twitter_search_tweets","summary":"Search tweets","parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string"}},{"name":"max_results","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Tweet list"}}}},"/api/twitter/user":{"get":{"operationId":"twitter_get_user_profile","summary":"Get Twitter user profile","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"User profile"}}}},"/api/twitter/tweets":{"get":{"operationId":"twitter_get_user_tweets","summary":"Get user tweets","parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string"}},{"name":"max_results","in":"query","schema":{"type":"integer"}},{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Tweet list"}}}},"/api/twitter/video":{"post":{"operationId":"twitter_upload_video","summary":"Upload video and post tweet","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["video_url","text"],"properties":{"video_url":{"type":"string","description":"Publicly accessible URL of the MP4 video"},"text":{"type":"string","description":"Tweet text content"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Video tweet posted"}}}},"/api/instagram/reel":{"post":{"operationId":"instagram_create_reel","summary":"Create Instagram Reel","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["video_url"],"properties":{"video_url":{"type":"string","description":"Publicly accessible URL of the MP4 video"},"caption":{"type":"string","description":"Reel caption text"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Reel created"}}}},"/api/tiktok/profile":{"get":{"operationId":"tiktok_get_profile","summary":"Get TikTok profile","parameters":[{"name":"account","in":"query","schema":{"type":"string"}}],"responses":{"200":{"description":"Profile info"}}}},"/api/tiktok/video":{"post":{"operationId":"tiktok_create_video","summary":"Upload video to TikTok","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["video_url"],"properties":{"video_url":{"type":"string","description":"Publicly accessible URL of the video"},"title":{"type":"string","description":"Video title (max 150 chars)"},"description":{"type":"string","description":"Video description / caption"},"account":{"type":"string"}}}}}},"responses":{"200":{"description":"Video upload initiated"}}}}}}