Notion API - Public Beta (English)
  1. OBJECTS
Notion API - Public Beta (English)
  • Introduction
  • Integration capabilities
  • Request limits
  • Status codes
  • ENDPOINTS
    • Authentication
      • Authentication
      • Token
    • Blocks
      • Delete a block
      • Append block children
      • Retrieve a block
      • Update a block
      • Retrieve block children
    • Databases
      • Filter database entries
      • Sort database entries
      • Update database properties
      • Retrieve a database
      • Update a database
      • Query a database
    • Pages
      • Archive a page
      • Retrieve a page property item
      • Create a page
      • Retrieve a Page
      • Update Page properties
    • Users
      • List all users
      • Retrieve your token's bot user
      • Retrieve a user
    • Comments
      • Create comment
      • Retrieve comments
    • Search
      • Search optimizations and limitations
      • Search by title
  • OBJECTS
    • Block
    • Comment
    • Unfurl attribute object for Link Previews
    • Page
      • Page
      • Page properties
    • Database
      • Database
      • Database properties
    • User
      • User
      • Comment
    • Other
      • Emoji object
      • File object
      • Parent object
      • Rich text object
  • Versioning
    • Versioning
    • Changes by version
  • ENDPOINTS Copy
    • Authentication
      • Authentication
      • Token
    • Blocks
      • Retrieve a block
      • Update a block
      • Retrieve block children
      • Delete a block
      • Append block children
    • Databases
      • Filter database entries
      • Sort database entries
      • Update database properties
      • Retrieve a database
      • Update a database
      • Query a database
      • Create a database
    • Pages
      • Archive a page
      • Retrieve a Page
      • Update Page properties
      • Retrieve a page property item
      • Create a page
    • Users
      • Retrieve a user
      • List all users
      • Retrieve your token's bot user
    • Comments
      • Create comment
      • Retrieve comments
  1. OBJECTS

Unfurl attribute object for Link Previews

A Link Preview is created from an array of unfurl attribute objects.
A Link Preview is a real-time excerpt of authenticated content that unfurls in Notion when an authenticated user shares an enabled link.
1242
Example Link Preview in a Notion workspace
Instead of a full Link Preview, a user can opt to render a Mention, a miniature version of a Link Preview that uses the same data.
1060
Example Mention in a Notion workspace
A Link Preview or Mention displays data that is sent to Notion as an array of unfurl attribute objects. Every array must contain a title attribute and a dev attribute.
For example, the following payload creates the example Link Preview and Mention above:
JSON
[
  {
    "id": "title",
    "name": "Title",
    "type": "inline",
    "inline": {
      "title": {
        "value": "Feature Request: Link Previews",
        "section": "title"
      }
    }
  },
  {
    "id": "dev",
    "name": "Developer Name",
    "type": "inline",
    "inline": {
      "plain_text": {
        "value": "Acme Inc",
        "section": "secondary"
      }
    }
  },
  {
    "id": "state",
    "name": "State",
    "type": "relation",
    "relation": {
      "uri": "acme:item_state/open",
      "mention": {
        "section": "primary"
      }
    }
  },
  {
    "id": "itemId",
    "name": "Item Id",
    "type": "inline",
    "inline": {
      "plain_text": {
        "value": "#23487",
        "section": "identifier"
      }
    }
  },
  {
    "id": "itemIcon",
    "name": "Item Icon",
    "type": "inline",
    "inline": {
      "color": {
        "value": {
          "r": 247,
          "g": 247,
          "b": 42
        },
        "section": "entity"
      }
    }
  },
  {
    "id": "description",
    "name": "Description",
    "type": "inline",
    "inline": {
      "plain_text": {
        "value": "Would love to be able to preview some Acme resources in Notion!\n Maybe an open item?",
        "section": "body"
      }
    }
  },
  {
    "id": "updated_at",
    "name": "Updated At",
    "type": "inline",
    "inline": {
      "datetime": {
        "value": "2022-01-11T19:53:18.829Z",
        "section": "secondary"
      }
    }
  },
  {
    "id": "label",
    "name": "Label",
    "type": "inline",
    "inline": {
      "enum": {
        "value": "🔨 Ready to Build",
        "color": {
          "r": 100,
          "g": 100,
          "b": 100
        },
        "section": "primary"
      }
    }
  },
  {
    "id": "media",
    "name": "Embed",
    "embed": {
      "src_url": "https://c.tenor.com/XgaU95K_XiwAAAAC/kermit-typing.gif",
      "image": {
        "section": "embed"
      }
    }
  }
]

The unfurl attribute object#

Example unfurl attribute object
{
    "id": "title",
    "name": "Title",
    "type": "inline",
    "inline": {
      "title": {
        "value": "Feature Request: Link Previews",
        "section": "title"
      }
    }
  }
Each unfurl attribute object contains the following values:
FieldTypeDescriptionExample value
idstringA unique identifier for the attribute. If more than one attribute with the same id is provided, then the latter attribute overrides the value of the first."title"
namestringA human readable name describing the attribute."Title"
typeinlineembed
inlineembedobject

Inline sub-type objects#

The key of inline sub-type objects represents the kind of sub-type. The values of the key are the value to display and the section of the Link Preview where the value is rendered.
Sub-typeDescriptionExample value
colorA color with r, b, g values.{ "value": { "r": 247, "g": 247, "b": 42 }, "section": "entity" }
dateA date.{ "value": "2022-01-11", "section": "secondary" }
datetimeA datetime.{ "value": "2022-01-11T19:53:18.829Z", "section": "secondary" }
enumA string value and optional color object.{ "value": "🔨 Ready to Build", "color": { "r": 100, "g": 100, "b": 100 }, "section": "primary" }
plain_textAny plain text content.{ "value": "Would love to be able to preview some Acme resources in Notion!\n Maybe an open item?", "section": "body" }
title*The title of the Link Preview. *An unfurl attribute object of this type must be included in every payload to create a Link Preview.{ "value": "Feature Request: Link Previews", "section": "title" }

The dev attribute#

Every array of attribute objects that is sent to Notion to create a Link Preview must also include a dev attribute. The attribute indicates the developer or company who created the Link Preview. It takes the following format:
Example dev attribute
{
    "id": "dev",
    "name": "Developer Name",
    "type": "inline",
    "inline": {
      "plain_text": {
        "value": "Acme Inc",
        "section": "secondary"
     }
   }
 }

Embed sub-type child objects#

You can use the embed sub-type object to add rich content like JPGs, GIFs, or iFrames to your Link Preview.
1228
An example Link Preview that embeds an image of Kermit the Frog
All embed sub-type objects contain: a src_url field that is a link to the embed, and an object whose key is the sub-type of the embed and whose value is an object indicating the section of the Link Preview where the value is rendered.
Sub-typeDescriptionExample value
audioAudio from a source URL.{ "src_url": "https://s3.us-east-3.amazonaws.com/12345.mp4", "audio": { "section": "embed" } }
htmlHTML from a source URL that is rendered in an iFrame.{ "src_url": "https://s3.us-east-3.amazonaws.com/12345.html", "html": { "section": "embed" } }
imageImage from a source URL.{ "src_url": "https://s3.us-east-3.amazonaws.com/12345.png", "image": { "section": "avatar" } }
videoVideo from a source URL.{ "src_url": "https://s3.us-east-3.amazonaws.com/12345.mp4", "video": { "section": "embed" } }

📘#

There’s no need to ask a user to log in to your service in an iFrame embed. If they’re using a Link Preview, then they’ve already authenticated.

The section value#

The section value of an unfurl attribute object defines where an attribute is rendered in the Link Preview or Mention.
1378
The sections of a Link Preview
926
The sections of a Mention
A section is specified in the sub-type object for the attribute. Refer to the table below for details about each section and its valid parent sub-types.
SectionDescriptionValid parent sub-types
avatarThe picture found on the bottom left of a Link Preview.image, plain_text
backgroundA background color for the Link Preview.color
bodyThe main string content of a Link Preview.plain_text
embedThe large space where the content of an embed attribute type is displayed in a Link Preview.audio, html, image, pdf, video
entityThe small picture found in the subheading of a Link Preview and in a Mention.color, image
identifierThe subheading found on the bottom of a Link Preview and on the left side of a Mention.image, plain_text
primaryThe first subheading section.enum, date, datetime, plain_text
secondaryThe second subheading section.date, datetime, plain_text
title*The main heading in a Link Preview or Mention. *Required.title
Modified at 2023-04-28 06:22:02
Previous
Comment
Next
Page
Built with