Entities Coming soon

Entities are the real-world things behind your objects — the book inside a book cover photo, the product behind a shopping URL, the place tagged in a screenshot. An object's entities are accessible via object.entities, and entities can be fetched directly by ID.

Work in progress

This page documents the entity model under active development. Type identifiers, property shapes, and the GET /entities/:id endpoint may all change before launch — don't ship integrations against this surface yet.

The entity model

Property Type Description
id Uid Unique identifier for the entity.
type string Type name for this entity. See Type Identifiers below.

Type identifiers

Apartment, Article, AudioObject, BlueSkyPost, Book, Brand, Business, Document, FacebookReel, Flight, FlightReservation, House, Human, ImageObject, InstagramPost, InstagramReel, Media, Model, Movie, MusicAlbum, MusicPlaylist, MusicRecording, MusicRelease, MusicVideo, Note, Painting, Palette, Periodical, Photograph, Place, Podcast, PodcastEpisode, PodcastSeason, Product, Quotation, RealEstateListing, Recipe, RedditPost, Repository, RepositoryIssue, Restaurant, ScholarlyArticle, Screenshot, SoftwareApplication, SubstackNote, TedTalk, ThreadsPost, TikTokPost, TVEpisode, TVSeason, TVSeries, Typeface, VideoGame, VideoObject, VimeoVideo, WebPage, WikipediaArticle, XPost, YouTubeVideo

Extended properties

Each entity type adds its own properties on top of the base model. The sections below document type-specific fields. Shared sub-types referenced by multiple entities (Actor, Address, Brand, etc.) are listed together at the end.

Apartment

PropertyTypeDescription
offersOffer[]Available offers.
addressAddressStreet address.
urlUrlListing URL.

Article

PropertyTypeDescription
titlestringArticle headline.
authorActorThe author.
publishedTimestampWhen the article was published.
publisherActorThe publisher.
contentContentThe content body.
urlUrlArticle URL.

AudioObject

PropertyTypeDescription
titlestringAudio title.
durationDurationDuration.
urlUrlAudio URL.

BlueSkyPost

PropertyTypeDescription
authorActorThe author.
contentContentThe content body.
urlUrlPost URL.

Book

PropertyTypeDescription
titlestringBook title.
authorsActor[]The authors.
isbnISBNISBN-13 identifier.
publisherActorThe publisher.
publishedTimestampPublication date.
offersOffer[]Available offers.
urlUrlBook URL.

Business

PropertyTypeDescription
namestringBusiness name.
addressAddressStreet address.
phoneNumberstringPhone number.
urlUrlWebsite URL.

Document

PropertyTypeDescription
titlestringDocument title.
formatstringFile format, e.g. pdf, docx.
urlUrlDocument URL.

FacebookReel

PropertyTypeDescription
authorActorThe author.
urlUrlReel URL.

Flight Coming soon

PropertyTypeDescription
airlineAirlineThe airline.
flightNumberstringFlight number.
departureAirportDeparture airport.
arrivalAirportArrival airport.
departureTimeTimestampScheduled departure time.
arrivalTimeTimestampScheduled arrival time.

FlightReservation Coming soon

PropertyTypeDescription
confirmationNumberstringBooking confirmation code.
flightEntityReferenceReference to the flight entity.

House

PropertyTypeDescription
namestringListing title.
offersOffer[]Available offers.
addressAddressStreet address.
bedroomsintegerNumber of bedrooms.
bathroomsintegerNumber of bathrooms.
urlUrlListing URL.

Human Coming soon

PropertyTypeDescription
namestringFull name.
urlUrlProfile or homepage URL.

ImageObject

PropertyTypeDescription
widthintegerWidth in pixels.
heightintegerHeight in pixels.
formatstringImage format, e.g. jpeg, png, webp.
urlUrlImage URL.

InstagramPost

PropertyTypeDescription
posterActorThe poster.
contentContentThe content body.
urlUrlPost URL.

InstagramReel

PropertyTypeDescription
authorActorThe author.
urlUrlReel URL.

Media

PropertyTypeDescription
formatstringMedia format or MIME type.
durationDurationDuration.
urlUrlMedia URL.

Model

PropertyTypeDescription
titlestringModel title.
formatstring3D format, e.g. glb, obj, usdz.
urlUrlModel URL.

Movie

PropertyTypeDescription
titlestringMovie title.
directorsActor[]The directors.
publishedTimestampRelease date.
durationDurationDuration.

MusicAlbum

PropertyTypeDescription
titlestringAlbum title.
artistActorThe artist.
yearintegerRelease year.
tracksTrack[]Album tracks.

Track

PropertyTypeDescription
titlestringTrack title.
numberintegerTrack number.
durationDurationDuration.

MusicPlaylist

PropertyTypeDescription
titlestringPlaylist title.
tracksTrack[]Playlist tracks.
urlUrlPlaylist URL.

MusicRecording

PropertyTypeDescription
titlestringTrack title.
artistActorThe artist.
albumEntityReferenceReference to the parent album entity.
durationDurationDuration.

MusicVideo

PropertyTypeDescription
titlestringVideo title.
artistActorThe artist.
durationDurationDuration.
urlUrlVideo URL.

MusicRelease

PropertyTypeDescription
titlestringRelease title.
artistActorThe artist.
kindstringRelease type, e.g. Single, Album, EP.
yearintegerRelease year.
url?UrlRelease URL.

Note

PropertyTypeDescription
contentContentThe content body.

Painting

PropertyTypeDescription
titlestringPainting title.
artistActorThe artist.
publishedTimestampWhen the painting was created.
mediumstringMedium, e.g. oil on canvas.

Palette

PropertyTypeDescription
colorsColor[]Palette colors.

Periodical

PropertyTypeDescription
namestringPublication name.
urlUrlPublication URL.

Photograph

PropertyTypeDescription
titlestringPhotograph title.
authorActorThe author.
urlUrlImage URL.

Place

PropertyTypeDescription
namestringPlace name.
addressAddressStreet address.

Podcast

PropertyTypeDescription
titlestringPodcast title.
authorActorThe author.
urlUrlPodcast URL.

PodcastEpisode

PropertyTypeDescription
titlestringEpisode title.
podcastEntityReferenceReference to the parent podcast entity.
durationDurationDuration.
publishedTimestampPublication date.
urlUrlEpisode URL.

PodcastSeason

PropertyTypeDescription
titlestringSeason title.
podcastEntityReferenceReference to the parent podcast entity.
numberintegerSeason number.

Product

PropertyTypeDescription
namestringProduct name.
offersOffer[]Available offers.
brandBrandThe brand.
urlUrlProduct URL.

Quotation

PropertyTypeDescription
authorActorThe author.
contentContentThe content body.

RealEstateListing

PropertyTypeDescription
namestringListing title.
offersOffer[]Available offers.
addressAddressStreet address.
propertyEntityReferenceReference to the property entity (Apartment, House, etc.).
urlUrlListing URL.

Recipe

PropertyTypeDescription
titlestringRecipe title.
authorActorThe author.
ingredientsRecipeIngredient[]List of ingredients.
instructionsRecipeInstruction[]Step-by-step instructions.
cookTimeDurationCook time.
prepTimeDurationPrep time.
urlUrlRecipe URL.

RecipeIngredient

PropertyTypeDescription
idUidIngredient identifier.
namestringIngredient name.
quantitynumberAmount required.

RecipeInstruction

PropertyTypeDescription
textstringThe instruction text.

RedditPost

PropertyTypeDescription
authorActorThe author.
subredditstringSubreddit name.
publishedTimestampPublication date.
urlUrlPost URL.

Repository

PropertyTypeDescription
licenseLicenseRepository license.
ownerActorRepository owner.
urlUrlRepository URL.

RepositoryIssue

PropertyTypeDescription
titlestringIssue title.
numberintegerIssue number.
statestringIssue state, e.g. open, closed.
authorActorThe author.
repositoryEntityReferenceReference to the parent repository entity.
urlUrlIssue URL.

Restaurant

PropertyTypeDescription
namestringRestaurant name.
addressAddressStreet address.
phoneNumberstringPhone number.
urlUrlWebsite URL.

ScholarlyArticle

PropertyTypeDescription
titlestringPaper title.
authorActorThe author.
publishedTimestampPublication date.
journalActorThe journal.
doistringDOI identifier.
urlUrlPaper URL.

Screenshot Coming soon

PropertyTypeDescription
widthintegerWidth in pixels.
heightintegerHeight in pixels.
urlUrlImage URL.

SoftwareApplication

PropertyTypeDescription
namestringApplication name.
platformPlatformThe platform.
urlUrlApplication URL.

SubstackNote

PropertyTypeDescription
authorActorThe author.
publishedTimestampPublication date.
urlUrlNote URL.

TedTalk

PropertyTypeDescription
titlestringTalk title.
speakerActorThe speaker.
durationDurationDuration.
urlUrlTalk URL.

ThreadsPost

PropertyTypeDescription
authorActorThe author.
contentContentThe content body.
urlUrlPost URL.

TikTokPost

PropertyTypeDescription
posterActorThe poster.
urlUrlVideo URL.

TVEpisode

PropertyTypeDescription
titlestringEpisode title.
seriesEntityReferenceReference to the parent TV series entity.
seasonTVEpisodeSeasonThe season this episode belongs to.
numberintegerEpisode number.
durationDurationDuration.
url?UrlEpisode URL.

TVEpisodeSeason

PropertyTypeDescription
idUidIdentifier of the parent season entity.
numberintegerSeason number.

TVSeason

PropertyTypeDescription
titlestringSeason title.
seriesEntityReferenceReference to the parent TV series entity.
numberintegerSeason number.
episodesEntityReference[]Episodes in the season.
url?UrlSeason URL.

TVSeries

PropertyTypeDescription
titlestringSeries title.
seasonsEntityReference[]Seasons in the series.

Typeface

PropertyTypeDescription
namestringTypeface name.
foundryActorThe type foundry.
designer?ActorThe type designer.

VideoGame

PropertyTypeDescription
titlestringGame title.
developerActorThe developer.
publisherActorThe publisher.
platformPlatformThe platform.
publishedTimestampRelease date.
url?UrlGame URL.

VideoObject

PropertyTypeDescription
titlestringVideo title.
durationDurationDuration.
urlUrlVideo URL.

VimeoVideo

PropertyTypeDescription
titlestringVideo title.
authorActorThe author.
durationDurationDuration.
urlUrlVideo URL.

WebPage

PropertyTypeDescription
titlestringPage title.
siteSiteThe source site.
urlUrlPage URL.

WikipediaArticle

PropertyTypeDescription
titlestringArticle title.
languagestringWikipedia language code, e.g. en.
urlUrlArticle URL.

XPost

PropertyTypeDescription
authorActorThe author.
publishedTimestampPublication date.
contentContentThe content body.
urlUrlPost URL.

YouTubeVideo

PropertyTypeDescription
titlestringVideo title.
authorActorThe author.
durationDurationDuration.
urlUrlVideo URL.

Shared sub-types

These sub-types are referenced by multiple entity types above.

Actor

PropertyTypeDescription
namestringDisplay name — a person, author, publisher, or organization.

Address

PropertyTypeDescription
streetstringStreet address.
citystringCity name.
regionstringState, province, or region.
postalCodestringPostal or ZIP code.
countryCountryCountry.

Airline

PropertyTypeDescription
namestringAirline name.
iatastringIATA airline code, e.g. AA, UA.

Airport

PropertyTypeDescription
namestringAirport name.
codestringIATA airport code, e.g. LAX, JFK.

Brand

PropertyTypeDescription
namestringBrand name.

Country

PropertyTypeDescription
namestringCountry name.
codestringISO 3166-1 alpha-2 code, e.g. US, GB.

Language

PropertyTypeDescription
namestringLanguage name.
codestringISO 639-1 code, e.g. en, fr.

License

PropertyTypeDescription
namestringDisplay name of the license.

Platform

PropertyTypeDescription
namestringPlatform name.

Site

PropertyTypeDescription
namestringSite name.
domainstringDomain name, e.g. example.com.

Actions

Get an entity

Retrieves a single entity by its ID.

GET /entities/:id 1 credit

Path parameters

Parameter Type Description
id Uid Entity to retrieve.
Response 200 OK
{
  "id": "c3D4e5F6g7H8i9J0k1L2m3",
  "type": "Brand"
}