Tag: Multi Brand Social

  • Metricool Scheduler: How the Content Planner Actually Works

    The Metricool content planner is where most of the daily scheduling work actually happens. Understanding how it works — and how to use it efficiently for a multi-brand operation — is the difference between Metricool as a useful tool and Metricool as another tab you open occasionally and close without doing much.

    What is the Metricool content planner? The Metricool content planner is the visual content calendar that shows all scheduled posts for a brand in a weekly or monthly grid view. It’s the primary interface for managing posting schedules — creating new posts, editing existing ones, rescheduling by dragging between days, identifying gaps, and confirming the week’s content is in place before the week begins.

    The Weekly Review Workflow

    For a consistent social media presence, the most effective use of the Metricool planner is a weekly review session — one dedicated block of time to look at the upcoming week, identify gaps, fill them, and confirm everything is scheduled. For most operations, this takes fifteen to thirty minutes per brand.

    The planner’s weekly view shows each day’s scheduled posts as blocks in the calendar. Empty days are immediately visible. Dragging existing posts between days to balance the distribution takes seconds. Creating new posts for the gaps fills them without navigating away from the calendar view.

    For a multi-brand operation, the weekly review runs brand by brand — switch to Brand A, review and fill gaps, switch to Brand B, repeat. With practice this process becomes fast enough that managing twenty brands’ weekly calendars takes under two hours.

    The Best Time Indicator

    When creating a post in the planner, Metricool shows a best time recommendation for each platform — the historical engagement data suggests when your audience is most active. The indicator appears as highlighted time slots in the scheduling interface.

    The recommendation is platform-specific. Your LinkedIn audience may be most active at a different time than your Facebook audience, and Metricool shows separate recommendations for each. For posts going to multiple platforms simultaneously, the time you choose is a compromise between multiple platform optima.

    For new brands without posting history, the recommendation defaults to general best-practice windows. After consistent posting for two to three months, the recommendations reflect actual audience behavior and become more reliable.

    Post Duplication and Repurposing

    The planner allows duplicating existing posts — useful for repurposing content across multiple brands or scheduling the same post type on a regular cadence. Duplicate a post, adjust the text or image, reschedule to a different brand or date. For content types that repeat on a schedule (weekly roundups, recurring feature formats), duplication saves recreating the format each time.

    How the API Interacts With the Planner

    Posts scheduled via the Metricool API appear in the planner the same way as manually scheduled posts. This is important for operations running programmatic scheduling — after a Claude session schedules posts via API, the planner shows those posts in the calendar view alongside any manually scheduled content. The planner is the single source of truth for all scheduled content regardless of how it was created.

    For our newspaper properties — the Mason County Minute, Belfair Bugle — daily Facebook posts generated from WordPress articles are scheduled via the Metricool API. Those posts appear in the planner alongside any manually created content. The weekly planner review confirms that the automated posts are in place and catches any gaps where automation may not have fired.

    Content Calendar Organization for Multiple Brands

    The brand selector at the top of the planner is the navigation mechanism for multi-brand management. One brand’s calendar is visible at a time — there’s no cross-brand calendar view that shows all twenty-four brands simultaneously. This is a limitation for operations that want a single unified view of all scheduled content across all brands, but it’s manageable with the weekly review workflow: cycle through brands systematically rather than trying to see everything at once.

    Naming brands clearly in Metricool matters for navigation efficiency. A brand list with descriptive names — “Mason County Minute – Facebook,” “Tygart Media – LinkedIn/Facebook” — is faster to navigate than generic names when you’re moving through a large portfolio.

    Want your social scheduling set up properly?

    We set up and run Metricool for multi-brand social operations — the pipeline, the API integration, and the scheduling system that runs on autopilot.

    Tygart Media manages 24 brands in Metricool across LinkedIn, Facebook, Instagram, and Google Business Profile. We know this tool at a level most tutorials don’t reach.

    See the social media setup service →

    Frequently Asked Questions

    Can you see all brands’ scheduled posts in one view in Metricool?

    No — Metricool’s planner shows one brand’s content calendar at a time. There’s no cross-brand unified calendar view. For multi-brand operations, this means reviewing each brand’s calendar separately during the weekly review. This is the most frequently cited UX limitation for agency users managing large portfolios.

    How far in advance can you schedule posts in Metricool?

    Metricool doesn’t impose a hard scheduling horizon — you can schedule posts months in advance. The practical limit is your own content production lead time and the platforms’ API constraints, not Metricool’s scheduling window. Scheduling evergreen content months in advance and filling in time-sensitive content week by week is a common workflow for operations managing high posting volume.

    What happens to a post if the API token is regenerated?

    Posts that are already scheduled in the planner continue as scheduled regardless of whether the API token is regenerated — they’re stored in Metricool’s system and will publish at the scheduled time. The regenerated token only affects future API calls. Existing scheduled posts are not affected by token changes. This is worth confirming before regenerating a token if you have an active automated workflow.

  • Metricool API: What It Can Do and How to Actually Use It

    The Metricool API is the feature that separates it from every other social scheduling tool at its price point. Most alternatives at Metricool’s tier don’t expose a working REST API. The ones that do make it complicated. Metricool’s API is straightforward enough to integrate in an afternoon and reliable enough to run production workflows on.

    What can the Metricool API do? The Metricool REST API allows programmatic post scheduling across all supported platforms (LinkedIn, Facebook, Instagram, GBP, X/Twitter, TikTok, YouTube, Pinterest, Threads, Bluesky), retrieval and management of scheduled posts, brand listing, and media normalization for image attachment. It requires the Advanced plan and authenticates via an API token in the X-Mc-Auth request header with userId and blogId as query parameters.

    Authentication: How It Actually Works

    The Metricool API uses a token-based authentication system with one non-obvious requirement that breaks most first integrations: the API token goes in a custom header, not as a Bearer token.

    Correct: X-Mc-Auth: your_token_here in the request header.

    Wrong: Authorization: Bearer your_token_here — this returns 401.

    Additionally, userId and blogId go as query parameters, not in the header. Every request needs all three: the X-Mc-Auth header plus userId and blogId in the query string. Get your token from Account Settings → API. Your userId is in the URL when logged in. Each brand’s blogId is in the URL when viewing that brand’s dashboard.

    Scheduling a Post: The Key Detail

    The most common API integration failure after authentication: the providers field. Platforms you’re posting to must be specified as objects, not strings.

    Correct: "providers": [{"network": "linkedin"}, {"network": "facebook"}]

    Wrong: "providers": ["linkedin", "facebook"] — the API accepts this but the post fails to schedule correctly.

    The full post payload requires a publicationDate with dateTime in ISO format and a timezone, the post text, the providers array, and autoPublish set to true for direct publishing (false for draft). For posts with images, media must be normalized first via a separate GET request that returns a mediaId to include in the post body.

    The Multi-Brand Architecture

    The blogId parameter is what makes multi-brand programmatic scheduling work. Each brand in your Metricool account has a unique blogId. One API token covers all brands. To schedule a post to Brand A, use Brand A’s blogId in the query parameters. To schedule to Brand B in the next request, swap to Brand B’s blogId. The same token, the same userId, different blogId per brand.

    We use this pattern to schedule social posts across 24 brands from Claude sessions. A content session generates post text for multiple brands, then iterates through each brand’s blogId, scheduling the appropriate post to each. The entire scheduling operation happens programmatically without opening the Metricool interface.

    Platform-Specific Constraints

    LinkedIn: 3,000 character limit per post. Up to 20 images or one video. Company page posts require the organization’s LinkedIn URN.

    Facebook: 16,192 character limit. facebookData.type must be specified as POST or REEL.

    Google Business Profile: 1,500 character limit. Single image only. Provider network value is google (not gbp).

    Instagram: 2,200 character limit, 30 hashtag maximum, 50 posts per 24-hour limit. Requires Professional account connected to Facebook Page.

    X/Twitter: 280 characters. Links consume 23 characters regardless of actual URL length.

    Error Handling and Rate Limits

    Metricool doesn’t publish official rate limits. In practice, adding a one-second delay between API calls prevents any throttling issues at typical agency operation volumes. The API returns HTTP 429 with a Retry-After header when rate limited — handle this with exponential backoff if you’re running high-volume operations.

    Token regeneration is immediate and breaking — regenerating your API token in Metricool’s settings invalidates the old token with no grace period. Any integration using the old token fails immediately. Store your token securely and don’t regenerate it unnecessarily.

    Want your social scheduling set up properly?

    We set up and run Metricool for multi-brand social operations — the pipeline, the API integration, and the scheduling system that runs on autopilot.

    Tygart Media manages 24 brands in Metricool across LinkedIn, Facebook, Instagram, and Google Business Profile. We know this tool at a level most tutorials don’t reach.

    See the social media setup service →

    Frequently Asked Questions

    What plan does the Metricool API require?

    API access requires the Advanced plan or higher. The free and Starter plans do not include API access. The API token option doesn’t appear in account settings until you’re on an eligible plan.

    Can the Metricool API schedule to all supported platforms?

    Yes — the API supports scheduling to all platforms Metricool supports: LinkedIn, Facebook, Instagram, X/Twitter, Google Business Profile, TikTok, YouTube, Pinterest, Threads, and Bluesky. Platform availability varies by what you’ve connected to your brand in Metricool. You can only schedule via API to platforms that are connected for that brand.

    Where is the Metricool API documentation?

    Metricool’s official API documentation is available as a PDF from their help center (search “Metricool API documentation” or check the developer section of their website). The documentation covers all available endpoints, required parameters, and example payloads. The providers-as-objects requirement and X-Mc-Auth header format are both specified in the documentation but easy to miss on first reading.