Context
Every response includes an@context array identifying the vocabularies used:
followerCount, isVerified, and viewCount.
Object types
Detail endpoints
Endpoints that return a single resource (e.g. a user or video) return the object directly:List endpoints
Endpoints that return multiple items useOrderedCollectionPage:
Common properties
Properties are consistent across platforms:
The same code that processes a TikTok user works for an Instagram, X, or Reddit user — the field names and structure are identical.
Chaining requests with entityId
Every object in a response includes anentityId field — a platform-specific identifier you can use as a parameter when calling related endpoints.
entityId as the videoId parameter in the comments endpoint. The same pattern applies across all resource types and platforms.
Always use
entityId to chain requests. Do not try to extract IDs from the id or url fields — those are canonical URLs, not parameter values.