Query
items
Search and paginate archived items (social content) for the current workspace.
Arguments
Object, input and enum types open in place — use + to reveal their fields. A type that is already open above the row stops at a ↻ circular marker, and anything nested past the depth limit links out to its own page instead.
- after String
- Cursor for fetching the next page of results.
- customAttributeConditions [CustomAttributeConditionInput!] default []
- Custom attribute filter conditions.
- field String! required
- Key of the custom attribute to filter on, as returned by customAttributeSchemas (e.g. "sentiment").
- operator FilterOperator! required
- Comparison operator. The valid set depends on the attribute type; see FilterOperator.
- BETWEEN
- Inclusive range match for number and date types; value is { from, to }.
- CONTAINS
- For text-like types: substring match. For multi-select and list types: matches records containing ANY of the provided values (OR semantics).
- CONTAINS_ALL
- For multi-select custom attributes: matches records whose value array contains ALL of the provided values (AND semantics).
- DOES_NOT_CONTAIN
- For text-like types: excludes substring matches. For multi-select and list types: excludes records containing any of the provided values.
- ENDS_WITH
- Suffix match, for text-like types.
- EQUAL
- Equality, for number and date types.
- IS
- Exact match. For text and single-select types (for selects, value is the option ID) and BOOLEAN (value is true/false).
- IS_EMPTY
- Matches records with no value set. Value is ignored; pass null.
- IS_NOT
- Exact non-match, for text and single-select types.
- IS_NOT_EMPTY
- Matches records with any value set. Value is ignored; pass null.
- IS_RELATIVE_TO_TODAY
- Matches date values in a period relative to today; value is { relation: "past"|"this"|"next", period: "day"|"week"|"month"|"year" } (offset optional).
- LESS_THAN
- Strictly less than, for number and date types.
- LESS_THAN_OR_EQUAL
- Less than or equal, for number and date types.
- MORE_THAN
- Strictly greater than, for number and date types.
- MORE_THAN_OR_EQUAL
- Greater than or equal, for number and date types.
- NOT_EQUAL
- Inequality, for number and date types.
- STARTS_WITH
- Prefix match, for text-like types.
- type CustomAttributeType! required
- Type of the custom attribute, as returned by customAttributeSchemas. Determines the expected value shape and the valid operators.
- BOOLEAN
- True/false value.
- BOOLEAN_LIST
- List of true/false values.
- DATE
- Calendar date value (ISO 8601, no time component).
- DATETIME
- Date-and-time value (ISO 8601).
- DATETIME_LIST
- List of date-and-time values (ISO 8601).
- DATE_LIST
- List of calendar date values (ISO 8601, no time component).
- Email address value.
- MULTIPLE_SELECT
- Multiple choices from a predefined option list; the stored value is an array of option IDs.
- MULTIPLE_SELECT_V2
- Multiple choices from a predefined option list; the stored value is an array of option IDs. Successor revision of MULTIPLE_SELECT with identical filtering behavior.
- NUMBER
- Numeric value.
- NUMBER_LIST
- List of numeric values.
- PHONE
- Phone number value.
- SHIPPING_ADDRESS
- Structured shipping address. Not filterable: conditions with this type are rejected with a validation error; read the value from the record's customAttributes instead.
- SINGLE_SELECT_V2
- Single choice from a predefined option list; the stored value is an option ID.
- SINGLE_SELECT_V3
- Single choice from a predefined option list; the stored value is an option ID. Successor revision of SINGLE_SELECT_V2 with identical filtering behavior.
- TEXT
- Free-form text value.
- TEXT_LIST
- List of free-form text values.
- URL
- URL value.
- value JSON
- Comparison value; the shape depends on type: a string for text-like types, an option ID for single-selects, a number for NUMBER, an ISO 8601 string for dates, true/false for BOOLEAN, an array for multi-select and list types. BETWEEN takes { from, to }. Pass null for IS_EMPTY / IS_NOT_EMPTY.
- filter ItemFilterInput default {}
- Filter criteria to narrow down results.
- accountNames [String!] default []
- Filter by social profile account names/handles.
- campaignsIds [ID!] default []
- Filter to items associated with any of the given campaign IDs.
- collectionsIds [ID!] default []
- Filter to items that belong to any of the given collection IDs in the current workspace.
- contentTypes [MediaContentType!]
- Filter by media content type (IMAGE, VIDEO).
- IMAGE
- Static image content (for example photos, thumbnails, frames).
- VIDEO
- Video content (for example Reels, TikToks, Stories, YouTube videos).
- creatorLocations [LocationCanonicalInput!]
- Filter by the creator's location. Format: an array of objects, each with optional
country,region,city(canonical names from Archive's Geo normalization pipeline; case-sensitive exact match, e.g. "United States", "California", "Los Angeles"). Within a single entry, populated components are AND-ed together. Multiple entries OR together, which is useful for disambiguating same-named cities (e.g. Portland, Oregon vs. Portland, Maine). Omit a component to leave it unconstrained. Example:[{ country: "United States", region: "California" }, { city: "London" }]matches creators in California, USA OR in any city named "London". - city String
- Canonical city name (e.g. "Portland"). Matches creator.city_canonical exactly.
- country String
- Canonical country name (e.g. "United States"). Matches creator.country_canonical exactly.
- region String
- Canonical region/state name (e.g. "Oregon"). Matches creator.region_canonical exactly.
- engagement [FilterEngagementRangeInput!]
- Filter by engagement metric ranges (likes, comments, views, etc.).
- field FilterEngagementField! required
- Engagement metric to filter on.
- COMMENT_COUNT
- Total number of comments.
- EARNED_MEDIA_VALUE
- Estimated earned media value (EMV) in cents.
- ENGAGEMENTS_RATE
- Engagement rate: total engagements divided by the creator's follower count. Bounds are whole percent (5 = 5%); values below 1% are not expressible.
- IMPRESSIONS_RATE
- Impressions rate: views, plays, or estimated impressions divided by the creator's follower count. Bounds are whole percent (5 = 5%); values below 1% are not expressible.
- LIKE_COUNT
- Total number of likes.
- MERGED_VIEW_PLAY_COUNT
- Number of views, plays, or estimated impressions.
- SHARE_COUNT
- Total number of shares.
- range FilterIntegerRangeInput! required
- Inclusive numeric range the metric value must fall within.
- from Int
- Inclusive lower bound. Omit for no lower bound.
- to Int
- Inclusive upper bound. Omit for no upper bound.
- followersCount FilterIntegerRangeInput
- Filter by social profile follower count range.
- from Int
- Inclusive lower bound. Omit for no lower bound.
- to Int
- Inclusive upper bound. Omit for no upper bound.
- ids [ID!] default []
- Filter to specific item IDs.
- importType FilterImportType
- Filter by how the item was imported (manual or automatic).
- AUTOMATIC
- Item was captured automatically (e.g. by social listening).
- MANUAL
- Item was imported on request by a user.
- instagramWhitelistingStatus [FilterContractStatus!]
- Filter by Instagram whitelisting request status.
- APPROVED
- Contract has been approved by the creator.
- EXPIRED
- Contract approval has expired.
- IN_QUEUE
- Contract request is queued for processing.
- REJECTED
- Contract request was rejected by the creator.
- REQUESTED
- Contract has been requested but not yet responded to.
- itemTypes [FilterItemType!]
- Filter by item type (POST, REEL, STORY, TIKTOK, TIKTOK_STORY, YOUTUBE, YOUTUBE_SHORT).
- POST
- Instagram feed post.
- REEL
- Instagram Reel.
- STORY
- Instagram Story.
- TIKTOK
- TikTok video post.
- TIKTOK_STORY
- TikTok Story.
- YOUTUBE
- YouTube video.
- YOUTUBE_SHORT
- YouTube Short.
- provider Provider
- Filter by source platform (INSTAGRAM, TIKTOK, YOUTUBE, INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- shopifyProductsIds [String!] default []
- Filter by associated Shopify product IDs.
- socialProfileAccountTypes [SocialProfileAccountType!] default []
- Filter by the social profile's account type. Values currently reflect Instagram-only typing (Personal / Creator / Business); profiles on platforms without a comparable concept are excluded when this filter is supplied. Mirrors
Influencer.account_type. OR semantics across multiple values; empty/omitted skips the filter. - BUSINESS
- Instagram Business account (business features and insights enabled).
- CREATOR
- Instagram Creator account (creator features enabled, distinct from Business).
- PERSONAL
- Personal Instagram account (consumer profile, no business/creator features).
- socialProfileIds [ID!] default []
- Filter by social profile IDs.
- sourcesIds [ID!] default []
- Filter by source IDs.
- superSearch FilterSuperSearchInput
- Visual or semantic search parameters.
- fileName String
- Name of an uploaded file to use for visual similarity search.
- imageUrl String
- URL of an external image to use for visual similarity search.
- mode FilterSuperSearchMode
- Search mode determining how the query is processed.
- EMBEDDING_CONTENT
- Search by visual/semantic similarity using content embeddings.
- FUZZY_CAPTION
- Search by fuzzy matching against post captions.
- FUZZY_TRANSCRIPTION
- Search by fuzzy matching against video/audio transcriptions.
- searchQuery String
- Text query to search captions, transcriptions, or semantic content.
- similarMediaContentId ID
- ID of a media content to find visually similar items.
- tagsNames [String!] default []
- Filter by hashtag or mention tag names.
- takenAt FilterDateRangeInput
- Filter by publication date range.
- from DateTime
- Inclusive lower bound (ISO 8601). Omit for no lower bound.
- to DateTime
- Inclusive upper bound (ISO 8601). Omit for no upper bound.
- tiktokSparkCodeStatus [FilterContractStatus!]
- Filter by TikTok Spark Code request status.
- APPROVED
- Contract has been approved by the creator.
- EXPIRED
- Contract approval has expired.
- IN_QUEUE
- Contract request is queued for processing.
- REJECTED
- Contract request was rejected by the creator.
- REQUESTED
- Contract has been requested but not yet responded to.
- tiktokWhitelistingEligibility FilterTikTokWhitelistingEligibility
- Filter to items authored by TikTok creators eligible for whitelisting.
- ALL
- Match items authored by TikTok creators reachable via manual DM for whitelisting.
- ugcLocations [LocationCanonicalInput!]
- Filter by the location tagged on the content itself (UGC location). Format: same as
creatorLocations: an array of objects with optionalcountry,region,city(canonical, case-sensitive exact match). Within a single entry the populated components AND together; multiple entries OR together. Example:[{ country: "United Kingdom", city: "London" }]matches items whose tagged location resolves to London, UK. - city String
- Canonical city name (e.g. "Portland"). Matches creator.city_canonical exactly.
- country String
- Canonical country name (e.g. "United States"). Matches creator.country_canonical exactly.
- region String
- Canonical region/state name (e.g. "Oregon"). Matches creator.region_canonical exactly.
- usageRightsStatus [FilterContractStatus!]
- Filter by usage rights request status.
- APPROVED
- Contract has been approved by the creator.
- EXPIRED
- Contract approval has expired.
- IN_QUEUE
- Contract request is queued for processing.
- REJECTED
- Contract request was rejected by the creator.
- REQUESTED
- Contract has been requested but not yet responded to.
- verified [Boolean!]
- Filter by social profile verification status.
- viralityScore [FilterViralityScore!] default []
- Filter by virality score categories.
- HIGH
- Content that significantly outperforms its expected reach. Typically corresponds to a view-to-follower ratio of 4.0 or higher.
- LOW
- Content performing close to expected baseline relative to audience size. Typically corresponds to a view-to-follower ratio between ~1.0 and 2.0.
- MEDIUM
- Content performing above average relative to audience size. Typically corresponds to a view-to-follower ratio between ~2.0 and 4.0.
- NOT_VIRAL
- Content performing below expected reach, with low relative visibility. Typically corresponds to a view-to-follower ratio below ~1.0.
- first Int default 20
- Number of items to return (page size).
- presetId ID
- Filter preset ID. When provided, sorting, filter, and customAttributeConditions are ignored. Must reference a preset with accessor
media_deckorcollections; pass IDs returned bycontentViews/collectionsqueries. Unknown, cross-workspace, or wrong-accessor preset IDs raise a GraphQL error withextensions.code = "WRONG_VIEW_TYPE_FOR_ITEMS". - sorting [ItemSortingInput!] default [{sortKey: TAKEN_AT, sortOrder: DESC}]
- Sorting instructions to apply to the result set.
- sortKey ItemSortKey! required
- Which field to sort items by.
- ACCOUNT_NAME
- Sort by creator account name.
- COMMENT_COUNT
- Sort by total number of comments.
- EARNED_MEDIA_VALUE
- Sort by earned media value (EMV).
- EXPONENTIAL_VIRALITY
- Sort by exponential virality score.
- FOLLOWERS_COUNT
- Sort by number of followers on the posting account.
- LIKE_COUNT
- Sort by total number of likes.
- LINEAR_VIRALITY
- Sort by linear virality score.
- MERGED_VIEW_PLAY_COUNT
- Sort by the combined view/play count across platforms.
- SHARE_COUNT
- Sort by number of shares.
- TAKEN_AT
- Sort by when the content was originally posted on the social platform.
- sortOrder SortOrder! required
- Whether to sort ascending (ASC) or descending (DESC).
- ASC
- Sort in ascending order (for example oldest date or smallest number first).
- DESC
- Sort in descending order (for example newest date or largest number first).
Returns
A paginated connection of Item nodes. See Pagination for the connection shape.
- edges [ItemEdge!]!
- List of edges with cursors.
- cursor String!
- Cursor for this node.
- node Item!
- The item.
- aiFilterReasons [AiFilterReason!]!
- Explanations the AI Filters produced for this item's AI-generated custom attributes, one entry per AI-generated attribute the item has. Pair each entry to its value by
keyincustomAttributes;customAttributeSchemasmarks which keys are AI-generated viaaiGenerated. Empty when the item has none. - key String!
- Custom-attribute key this explanation belongs to. Matches a key in
customAttributesand thekeyof acustomAttributeSchemasentry. - reason String
- The AI Filter's explanation for the value it assigned. Null when the run recorded no explanation; an empty string is returned verbatim when the model produced one.
- archivePublicUrl String
- Stable Archive permalink for this item. Unlike
originalUrl, this URL keeps resolving after the source post is deleted or the creator account goes private. - caption String
- Caption text of the content, when available.
- creator Creator!
- Creator who posted this content.
- customAttributes JSON!
- Custom metadata fields associated with the creator (for example CRM attributes).
- id ID!
- Unique identifier for the creator in Archive's system.
- socialProfiles [SocialProfile!]!
- Social media profiles linked to this creator across all platforms (for example Instagram, TikTok, YouTube). Returns an empty list if no profiles are linked.
- accountName String!
- Username or handle of the social media account.
- avatar String
- URL of the account's profile picture, if available.
- creator Creator ↻ circular view Creator →
- Creator associated with this social profile in the current workspace. Use this to get the unified creator ID for deduplicating creators across platforms. Returns null if the profile has no creator record in this workspace.
- email String
- Email address associated with the account, if available.
- followers Int!
- Number of followers on the social media account (when available).
- following Int!
- Number of accounts this profile is following (when available).
- fullName String
- Display name or full name shown on the social media profile.
- id ID!
- Unique identifier of the social profile in Archive's system.
- originalUrl String!
- Direct URL to the profile on the social platform (e.g., https://instagram.com/account_name).
- phoneNumbers [String!]
- Phone numbers associated with the account, when present.
- private Boolean!
- Whether the social media account is currently set to private.
- proAccount Boolean!
- Whether the account is marked as a professional or business account on the platform.
- provider Provider!
- Platform where the social profile exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- verified Boolean!
- Whether the account has a verified/badge status on the platform.
- currentEngagement Engagement
- Most recent engagement metrics (likes, comments, views, shares, EMV) and virality score for this item.
- comments BigInt
- Total number of comments.
- earnedMediaValue BigInt
- Estimated earned media value (EMV) in cents.
- impressions BigInt
- Number of views, plays, or estimated impressions.
- likes BigInt
- Total number of likes.
- linearViralityScore ViralityScore!
- Bucketed virality score.
- HIGH
- Content that significantly outperforms its expected reach. Typically corresponds to a view-to-follower ratio of 4.0 or higher.
- LOW
- Content performing close to expected baseline relative to audience size. Typically corresponds to a view-to-follower ratio between ~1.0 and 2.0.
- MEDIUM
- Content performing above average relative to audience size. Typically corresponds to a view-to-follower ratio between ~2.0 and 4.0.
- NOT_VIRAL
- Content performing below expected reach, with low relative visibility. Typically corresponds to a view-to-follower ratio below ~1.0.
- shares BigInt
- Number of shares.
- views BigInt
- Number of views.
- customAttributes JSON!
- Custom metadata fields associated with the item.
- externalId ID!
- Platform-specific identifier for the content (e.g., Instagram post ID, TikTok video ID).
- hashtags [String!]
- List of hashtags used in the item’s caption or metadata.
- id ID!
- Unique identifier for the item in Archive's system.
- location Location
- Location associated with the content, if present.
- city String
- City associated with the location.
- country String
- Country associated with the location.
- formatted String
- Human-readable formatted address.
- name String
- Full name of the location.
- state String
- State, region, or province associated with the location.
- mediaItemId ID!
- Identifier of the parent media item. Use this to group related contents (e.g., carousel frames) that belong to the same post.
- mentions [String!]
- List of user mentions used in the item’s caption or metadata.
- originalUrl String
- Direct URL to the original content on the social platform. Returns null for content types without public URLs (e.g., Instagram Stories).
- provider Provider!
- Platform where the content exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- socialProfile SocialProfile!
- Social media profile on which this content was posted.
- accountName String!
- Username or handle of the social media account.
- avatar String
- URL of the account's profile picture, if available.
- creator Creator
- Creator associated with this social profile in the current workspace. Use this to get the unified creator ID for deduplicating creators across platforms. Returns null if the profile has no creator record in this workspace.
- customAttributes JSON!
- Custom metadata fields associated with the creator (for example CRM attributes).
- id ID!
- Unique identifier for the creator in Archive's system.
- socialProfiles [SocialProfile!]! ↻ circular view SocialProfile →
- Social media profiles linked to this creator across all platforms (for example Instagram, TikTok, YouTube). Returns an empty list if no profiles are linked.
- email String
- Email address associated with the account, if available.
- followers Int!
- Number of followers on the social media account (when available).
- following Int!
- Number of accounts this profile is following (when available).
- fullName String
- Display name or full name shown on the social media profile.
- id ID!
- Unique identifier of the social profile in Archive's system.
- originalUrl String!
- Direct URL to the profile on the social platform (e.g., https://instagram.com/account_name).
- phoneNumbers [String!]
- Phone numbers associated with the account, when present.
- private Boolean!
- Whether the social media account is currently set to private.
- proAccount Boolean!
- Whether the account is marked as a professional or business account on the platform.
- provider Provider!
- Platform where the social profile exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- verified Boolean!
- Whether the account has a verified/badge status on the platform.
- takenAt DateTime!
- Timestamp when the content was originally published on the social platform (UTC).
- transcriptions [Transcription!]!
- Text transcriptions and subtitles generated for video content within this item.
- mediaContentId ID!
- Identifier of the media content this transcription belongs to.
- transcript String
- Plain text transcription of the spoken content.
- type ItemType!
- Type of archived content (for example POST, REEL, STORY or SHORT), depending on the platform.
- POST
- Standard feed post, such as a single image or carousel post on Instagram.
- REEL
- Short-form vertical video published as a Reel or equivalent format.
- SHORT
- Short-form vertical video such as a YouTube Short or similar format.
- STORY
- Ephemeral story content, typically available for a limited time.
- nodes [Item!]!
- List of items.
- aiFilterReasons [AiFilterReason!]!
- Explanations the AI Filters produced for this item's AI-generated custom attributes, one entry per AI-generated attribute the item has. Pair each entry to its value by
keyincustomAttributes;customAttributeSchemasmarks which keys are AI-generated viaaiGenerated. Empty when the item has none. - key String!
- Custom-attribute key this explanation belongs to. Matches a key in
customAttributesand thekeyof acustomAttributeSchemasentry. - reason String
- The AI Filter's explanation for the value it assigned. Null when the run recorded no explanation; an empty string is returned verbatim when the model produced one.
- archivePublicUrl String
- Stable Archive permalink for this item. Unlike
originalUrl, this URL keeps resolving after the source post is deleted or the creator account goes private. - caption String
- Caption text of the content, when available.
- creator Creator!
- Creator who posted this content.
- customAttributes JSON!
- Custom metadata fields associated with the creator (for example CRM attributes).
- id ID!
- Unique identifier for the creator in Archive's system.
- socialProfiles [SocialProfile!]!
- Social media profiles linked to this creator across all platforms (for example Instagram, TikTok, YouTube). Returns an empty list if no profiles are linked.
- accountName String!
- Username or handle of the social media account.
- avatar String
- URL of the account's profile picture, if available.
- creator Creator ↻ circular view Creator →
- Creator associated with this social profile in the current workspace. Use this to get the unified creator ID for deduplicating creators across platforms. Returns null if the profile has no creator record in this workspace.
- email String
- Email address associated with the account, if available.
- followers Int!
- Number of followers on the social media account (when available).
- following Int!
- Number of accounts this profile is following (when available).
- fullName String
- Display name or full name shown on the social media profile.
- id ID!
- Unique identifier of the social profile in Archive's system.
- originalUrl String!
- Direct URL to the profile on the social platform (e.g., https://instagram.com/account_name).
- phoneNumbers [String!]
- Phone numbers associated with the account, when present.
- private Boolean!
- Whether the social media account is currently set to private.
- proAccount Boolean!
- Whether the account is marked as a professional or business account on the platform.
- provider Provider!
- Platform where the social profile exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- verified Boolean!
- Whether the account has a verified/badge status on the platform.
- currentEngagement Engagement
- Most recent engagement metrics (likes, comments, views, shares, EMV) and virality score for this item.
- comments BigInt
- Total number of comments.
- earnedMediaValue BigInt
- Estimated earned media value (EMV) in cents.
- impressions BigInt
- Number of views, plays, or estimated impressions.
- likes BigInt
- Total number of likes.
- linearViralityScore ViralityScore!
- Bucketed virality score.
- HIGH
- Content that significantly outperforms its expected reach. Typically corresponds to a view-to-follower ratio of 4.0 or higher.
- LOW
- Content performing close to expected baseline relative to audience size. Typically corresponds to a view-to-follower ratio between ~1.0 and 2.0.
- MEDIUM
- Content performing above average relative to audience size. Typically corresponds to a view-to-follower ratio between ~2.0 and 4.0.
- NOT_VIRAL
- Content performing below expected reach, with low relative visibility. Typically corresponds to a view-to-follower ratio below ~1.0.
- shares BigInt
- Number of shares.
- views BigInt
- Number of views.
- customAttributes JSON!
- Custom metadata fields associated with the item.
- externalId ID!
- Platform-specific identifier for the content (e.g., Instagram post ID, TikTok video ID).
- hashtags [String!]
- List of hashtags used in the item’s caption or metadata.
- id ID!
- Unique identifier for the item in Archive's system.
- location Location
- Location associated with the content, if present.
- city String
- City associated with the location.
- country String
- Country associated with the location.
- formatted String
- Human-readable formatted address.
- name String
- Full name of the location.
- state String
- State, region, or province associated with the location.
- mediaItemId ID!
- Identifier of the parent media item. Use this to group related contents (e.g., carousel frames) that belong to the same post.
- mentions [String!]
- List of user mentions used in the item’s caption or metadata.
- originalUrl String
- Direct URL to the original content on the social platform. Returns null for content types without public URLs (e.g., Instagram Stories).
- provider Provider!
- Platform where the content exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- socialProfile SocialProfile!
- Social media profile on which this content was posted.
- accountName String!
- Username or handle of the social media account.
- avatar String
- URL of the account's profile picture, if available.
- creator Creator
- Creator associated with this social profile in the current workspace. Use this to get the unified creator ID for deduplicating creators across platforms. Returns null if the profile has no creator record in this workspace.
- customAttributes JSON!
- Custom metadata fields associated with the creator (for example CRM attributes).
- id ID!
- Unique identifier for the creator in Archive's system.
- socialProfiles [SocialProfile!]! ↻ circular view SocialProfile →
- Social media profiles linked to this creator across all platforms (for example Instagram, TikTok, YouTube). Returns an empty list if no profiles are linked.
- email String
- Email address associated with the account, if available.
- followers Int!
- Number of followers on the social media account (when available).
- following Int!
- Number of accounts this profile is following (when available).
- fullName String
- Display name or full name shown on the social media profile.
- id ID!
- Unique identifier of the social profile in Archive's system.
- originalUrl String!
- Direct URL to the profile on the social platform (e.g., https://instagram.com/account_name).
- phoneNumbers [String!]
- Phone numbers associated with the account, when present.
- private Boolean!
- Whether the social media account is currently set to private.
- proAccount Boolean!
- Whether the account is marked as a professional or business account on the platform.
- provider Provider!
- Platform where the social profile exists (for example INSTAGRAM, TIKTOK, YOUTUBE, or INTERNAL).
- Instagram platform integration, including posts, reels, stories, and profile data.
- INTERNAL
- Internal Archive-managed source used for synthetic or system-generated content.
- TIKTOK
- TikTok platform integration, including videos and creator profile data.
- YOUTUBE
- YouTube platform integration, including Shorts, videos, thumbnails, and profile data.
- verified Boolean!
- Whether the account has a verified/badge status on the platform.
- takenAt DateTime!
- Timestamp when the content was originally published on the social platform (UTC).
- transcriptions [Transcription!]!
- Text transcriptions and subtitles generated for video content within this item.
- mediaContentId ID!
- Identifier of the media content this transcription belongs to.
- transcript String
- Plain text transcription of the spoken content.
- type ItemType!
- Type of archived content (for example POST, REEL, STORY or SHORT), depending on the platform.
- POST
- Standard feed post, such as a single image or carousel post on Instagram.
- REEL
- Short-form vertical video published as a Reel or equivalent format.
- SHORT
- Short-form vertical video such as a YouTube Short or similar format.
- STORY
- Ephemeral story content, typically available for a limited time.
- pageInfo PageInfo!
- Pagination information.
- endCursor String
- Cursor for the last node in this page.
- hasNextPage Boolean!
- Whether there are more results after this page.
- hasPreviousPage Boolean!
- Whether there are results before this page.
- startCursor String
- Cursor for the first node in this page.
- totalCount Int
- Total number of items available.