Each extraction request requires a type parameter that specifies what data to extract.

Available types

TypeDescriptionReturns
profile.infoProfile metadataName, title, company, location, bio, followers count
profile.postsRecent posts from a profilePost content, engagement metrics, timestamps
profile.reelsShort-form videos on a profileVideo metadata, view/like counts
profile.followersFollowers of a profileList of follower profiles
post.infoSingle post metadataContent, author, engagement metrics, timestamps
post.likesPeople who liked/reacted to a postName, title, profile URL, reaction type
post.commentsPeople who commented on a postName, title, profile URL, comment text
company.infoCompany/organization metadataName, size, industry, locations, funding
company.reviewsReviews on a company pageRating, review text, author
group.postsPosts inside a community/groupPost content, author, engagement
job.listingsJob posts from a company or searchTitle, company, location, description
event.infoEvent metadataName, date, location, attendees
marketplace.listingsItems listed for saleTitle, price, description, seller
video.infoVideo metadataTitle, views, description, channel
channel.infoVideo-channel metadataSubscribers, total videos, description
place.infoBusiness/place metadataName, address, hours, rating
place.reviewsReviews for a placeRating, review text, author

Platform coverage

Not every type is available on every platform. Coverage depends on which providers support the combination — query GET /v1/providers for the live, authoritative matrix.
TypeLinkedInInstagramXRedditFacebookTikTokYouTubePinterestBlueskySnapchatGoogle Maps
profile.info
profile.posts
profile.reels
post.info
post.likes
post.comments
company.info
company.reviews
group.posts
job.listings
event.info
marketplace.listings
video.info
channel.info
place.info
place.reviews

Normalized response

Regardless of the provider, every extraction record includes at minimum:
{
  "name": "string",
  "title": "string or null",
  "company": "string or null",
  "location": "string or null",
  "profile_url": "string",
  "source": "linkedin | instagram | x | reddit | facebook | tiktok | youtube | pinterest | bluesky | snapchat | googlemaps",
  "extracted_at": "ISO 8601 timestamp"
}
Some extraction types include additional fields (e.g., reaction_type for post.likes, experience and education arrays for profile.info).