Back to Blog
General

What Brand Highlights on Instagram Actually Reveal (And How to Research Competitors With Them)

June 21, 2026
10 min read
S
By SociaVault Team
instagram highlightscompetitor researchbrand researchinstagram api

What Brand Highlights on Instagram Actually Reveal (And How to Research Competitors With Them)

TL;DR: Instagram Story Highlights are one of the most underused signals in competitive research. They reveal a brand's deliberate identity choices — what they want pinned at the top of their profile, what they're proudest of, what they assume new visitors should know. Reading them carefully reveals positioning, customer journey, and strategic priorities most other research misses. Here's the practical guide.

A friend who consults on brand strategy told me she does the same first thing on every engagement, regardless of industry: she opens the client's Instagram profile, scrolls down to the highlights, and reads every single one in order. Not the feed posts. Not the bio. The highlights.

I asked her why. She said: "Highlights are the only place on Instagram where the brand has chosen, deliberately and persistently, what they want every visitor to see. Posts come and go. Highlights are forever. They tell you what the brand thinks of itself."

This is true and underexploited. Most competitive research focuses on feed performance — engagement rates, posting cadence, top posts. The highlights layer is largely ignored. But it contains some of the highest-density information about a brand's positioning, anywhere in their public footprint.

This guide covers how to read highlights well, what specific signals they contain, and how to extract them programmatically when you need to research many brands at once.


What Highlights Actually Are

Instagram Story Highlights are saved Story collections that appear as circular icons below a profile bio, above the feed grid. Unlike Stories (which expire after 24 hours) and feed posts (which scroll into history), highlights stay pinned indefinitely and are visible to every profile visitor.

A brand can have unlimited highlights, but Instagram displays the first 4-5 prominently and the rest behind a scroll. So the order matters as much as the contents.

For most brand profiles, highlights typically include:

  • "About" or "Our Story" (founder narrative, brand origin)
  • "Products" or "Shop" (product showcase)
  • "FAQ" (common questions answered visually)
  • "Reviews" or "Press" (social proof)
  • Campaign-specific highlights (launches, collabs, events)
  • "Behind the Scenes" (production, team, process)

The choices about which highlights exist, what they're titled, and what order they appear in are deliberate. Reading them carefully reveals a brand's strategic priorities.


What to Read in a Brand's Highlights

A practical framework for analyzing highlights.

Order priority

The first 3-5 highlights are what the brand wants every visitor to see. The choice of "About" first vs "Shop" first vs "Reviews" first tells you what the brand thinks matters most.

A brand leading with "About" is positioning around story and trust-building. A brand leading with "Shop" is purely transactional. A brand leading with "Reviews" is acknowledging that social proof is their main conversion lever. None is wrong; they reveal different strategies.

Naming choices

Brand voice is unusually visible in highlight names. "Our Squad" vs "Team" vs "Behind the Scenes" — these aren't synonyms. The chosen name tells you the brand's voice positioning.

Notice especially: are highlights named in plain language or branded jargon? Plain-language names suggest the brand prioritizes accessibility for new audiences. Branded jargon suggests they're optimizing for an existing community that already speaks their language.

Cover image style

Each highlight has a cover image. The visual consistency (or lack of it) tells you about the brand's design discipline. Brands with custom-designed cover icons in a consistent style invest in design. Brands with mismatched covers usually run lighter on creative resources.

The visual style itself also signals positioning. Minimalist black-and-white covers vs colorful illustrations vs photo-based covers all communicate different brand mood.

Content depth and recency

Open each highlight and count the slides. A highlight with 3 slides is essentially decorative. A highlight with 30 slides is a content investment.

Look at recency. When was the last slide added to "Products"? "Reviews"? "Press"? Highlights that haven't been updated in 6+ months reveal deprioritization. A brand whose "Press" highlight is 18 months stale signals they haven't had recent press wins to share.

What's missing

Often the most useful signal. What highlights would you expect for a brand of this type that don't exist?

A consumer skincare brand without a "Reviews" or "Results" highlight is probably uncomfortable with their product reviews. A B2B SaaS brand without a "Customers" or "Case Studies" highlight may have trouble closing the social proof gap. A creator brand without an "About" highlight may not have a strong personal story to lead with.

What's missing is often more revealing than what's there.


Reading Highlights as a Customer Journey

Some brands construct their highlights as a deliberate customer journey: what someone discovering them for the first time should encounter in order.

When this is done well, you can trace it:

Highlight 1 (rightmost, displayed first): "Hi, we're [brand]" — the introduction. Who they are, what they make, why.

Highlight 2: "What we make" — the products, demonstrated visually.

Highlight 3: "Why people love us" — reviews, results, transformations.

Highlight 4: "How to use it" — onboarding, FAQ, tutorials.

Highlight 5: "Recent campaigns" — current marketing pushes.

A brand constructed this way is intentional about new-visitor experience. Their highlight strategy implies they think hard about who's visiting their profile and what those visitors need to see.

A brand whose highlights are random — last week's Stories pinned because they were good, no narrative continuity — has either deprioritized strategic profile design or doesn't think about it. Either is information.


Extracting Highlights at Scale

Manual review works for analyzing 1-3 brands deeply. For research projects covering many brands, you need to extract highlights programmatically.

The Instagram Graph API doesn't expose highlights for accounts you don't control. Third-party APIs do.

The SociaVault Instagram highlights API returns the structured data for any public account: the list of highlights, their titles, cover images, and the slides within each. Combined with the Instagram profile API, you can build comprehensive brand research workflows.

A practical example: pulling highlights for 30 competitor brands and analyzing patterns:

import requests
from collections import Counter

API_KEY = "your_sociavault_key"
BASE = "https://api.sociavault.com"

COMPETITORS = [
    "brand_a", "brand_b", "brand_c", # ... 30 handles
]

def get_highlights(handle: str) -> list:
    """Fetch highlights for a brand handle."""
    resp = requests.get(
        f"{BASE}/v1/scrape/instagram/highlights",
        params={"handle": handle},
        headers={"x-api-key": API_KEY},
        timeout=15,
    )
    resp.raise_for_status()
    return resp.json().get("highlights", [])

# Pull highlights for all competitors
brand_highlights = {}
for handle in COMPETITORS:
    try:
        highlights = get_highlights(handle)
        brand_highlights[handle] = highlights
        print(f"{handle}: {len(highlights)} highlights")
    except Exception as e:
        print(f"{handle}: error - {e}")

# Analyze first-position priorities
first_position_titles = [
    h[0]["title"].lower() if h else None
    for h in brand_highlights.values() if h
]
print("\nMost common first-position highlight names:")
print(Counter(first_position_titles).most_common(10))

# Analyze average highlight count
avg_count = sum(len(h) for h in brand_highlights.values()) / len(brand_highlights)
print(f"\nAverage highlights per brand: {avg_count:.1f}")

This kind of analysis surfaces patterns. If 18 of 30 competitors lead with "Shop" or "Products," that's the category default. A brand leading with "About" is making a different choice. Worth understanding why.

For each highlight, you can also drill into the individual slides. The SociaVault highlight detail API returns the slide-by-slide content, which is where the deepest research happens.


Use Cases for Highlights Research

Specific applications.

Competitive positioning audit

For a brand entering a new category, analyzing competitor highlights reveals the implicit positioning landscape. What story do existing brands tell? What gaps in narrative are visible?

A founder building a new direct-to-consumer skincare brand might find that all 12 competitors have "Routine" highlights but only 4 have "Ingredients" highlights. That gap is a positioning opportunity — lead with ingredient transparency where competitors don't.

Brand voice benchmarking

For a rebrand or refresh, pulling highlight names from 20-30 brands in your space gives you a vocabulary map. What language is being used? What terms are oversaturated (and worth avoiding)? What naming conventions stand out as memorable?

Customer journey design

For a brand building or rebuilding their own profile, studying how the best brands in your space sequence their highlights is faster than starting from scratch. The patterns that work are visible; the ones that don't work are also visible.

Content gap analysis

By pulling all slides from a competitor's highlights, you can identify what topics they cover and what they don't. Topics they don't cover often represent opportunities for your own content — areas where you can become the authoritative voice in the category.

Press and partnership research

Brands often pin press wins and partnership announcements as highlights. Pulling these systematically gives you a map of who's worked with whom, which outlets cover which brands, and which partnerships have happened recently.


What Highlights Don't Tell You

Worth being honest about limits.

Performance. Highlights don't show view counts publicly. You don't know how many people actually see them.

Conversion. You can read what a brand intends, but not whether it converts profile visitors into customers.

Internal strategy. Highlights show outputs, not the strategic process. You see what the brand chose, not why.

Content quality from inside the highlight. While you can see the slide images, video content quality, audio choices, and similar fine-grained details require viewing the highlights individually.

For these dimensions, you need other research methods. Highlights are a powerful but specific lens.


Frequently Asked Questions

Are highlights still relevant in 2026?

More than ever. Many brands have shifted Story-as-temporary content downward and Highlight-as-permanent content upward. The decision of what goes in highlights is more deliberate now than it was when Stories first launched.

Can I download highlight content?

You can view highlights and capture screenshots manually. Programmatic extraction via APIs returns the metadata and image URLs (which you can then download). Note that downloading and republishing copyrighted brand content is generally not allowed.

Do brands often hide their highlights?

Public accounts have visible highlights by default. A brand could technically hide everything, but most don't because it would reduce their profile's effectiveness. If you find a brand without highlights, it usually means they haven't built any rather than they've hidden some.

How often do highlights change?

Less than you'd expect. Most brands set up their highlight structure and rarely change it. The contents inside highlights get updated more frequently — new slides added — but the structural layer is relatively stable.

Can I see who views my highlights?

For your own account: yes, Instagram shows you who's viewed each Story while it's live (24 hours). For highlights specifically, you don't get viewer data. For other accounts: no, you can't see anyone's viewer data on their highlights.

Is this useful for non-consumer brands?

Yes. B2B SaaS brands, creators, agencies, even law firms and consultants use Instagram highlights as part of their public positioning. The signal is the same; the content is just different.


Try SociaVault free → — 50 free credits to research brand highlights at scale.

Related: Instagram Highlights API · Instagram Profile API · Competitor Analysis on Social Media

Found this helpful?

Share it with others who might benefit

Ready to Try SociaVault?

Start extracting social media data with our powerful API. No credit card required.