tools/integrations/buffer.md
Social media scheduling, publishing, and analytics platform for managing multiple social profiles.
| Integration | Available | Notes |
|---|---|---|
| API | ✓ | REST API v1 for profiles, updates, scheduling |
| MCP | - | Not available |
| CLI | ✓ | buffer.js |
| SDK | - | No official SDK; legacy API still supported |
Authorization: Bearer {access_token}GET https://api.bufferapp.com/1/user.json
Authorization: Bearer {token}
GET https://api.bufferapp.com/1/profiles.json
Authorization: Bearer {token}
GET https://api.bufferapp.com/1/profiles/{profile_id}/schedules.json
POST https://api.bufferapp.com/1/updates/create.json
Content-Type: application/x-www-form-urlencoded
profile_ids[]={profile_id}&text=Your+post+content&scheduled_at=2026-03-01T10:00:00Z
GET https://api.bufferapp.com/1/profiles/{profile_id}/updates/pending.json?count=25
GET https://api.bufferapp.com/1/profiles/{profile_id}/updates/sent.json?count=25
POST https://api.bufferapp.com/1/updates/{update_id}/share.json
POST https://api.bufferapp.com/1/updates/{update_id}/destroy.json
POST https://api.bufferapp.com/1/profiles/{profile_id}/updates/reorder.json
Content-Type: application/x-www-form-urlencoded
order[]={update_id_1}&order[]={update_id_2}&order[]={update_id_3}
Buffer API v1 uses .json extensions on all endpoints. POST requests use application/x-www-form-urlencoded content type. Array parameters use bracket notation (e.g., profile_ids[]).
Responses include a success boolean for mutation operations.
followers - Follower count for connected profileservice - Platform name (twitter, facebook, instagram, linkedin, etc.)statistics.reach - Post reachstatistics.clicks - Link clicksstatistics.retweets - Retweets/sharesstatistics.favorites - Likes/favoritesstatistics.mentions - Mentionsprofile_ids[] - Required. Array of profile IDs to post totext - Required. Post contentscheduled_at - ISO 8601 timestamp for schedulingnow - Set to true to publish immediatelytop - Set to true to add to top of queueshorten - Set to true to auto-shorten linksmedia[photo] - URL to photo attachmentmedia[thumbnail] - URL to thumbnailmedia[link] - URL for link attachment