Instagram highlight reel metadata. Story contents are not surfaced because source's get_highlight_stories returned no story payload on probe (2026-05-20).
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Highlight reel id, e.g. `highlight:18223279177302854`. | |
| title | str | ||
| cover_url | str |
from unifapi.models.instagram_highlight import InstagramHighlight
# TODO update the JSON string below
json = "{}"
# create an instance of InstagramHighlight from a JSON string
instagram_highlight_instance = InstagramHighlight.from_json(json)
# print the JSON string representation of the object
print(InstagramHighlight.to_json())
# convert the object into a dict
instagram_highlight_dict = instagram_highlight_instance.to_dict()
# create an instance of InstagramHighlight from a dict
instagram_highlight_from_dict = InstagramHighlight.from_dict(instagram_highlight_dict)