Pull OpenGraph metadata from any URL into note frontmatter — title, image, description, publisher — via OpenGraph.io or Microlink.

An Obsidian plugin that allows you to fetch Open Graph data from a URL using OpenGraph.io.
We manage our site-wide content with Obsidian for ease of use and speed of development. We have a "toolkit" section (and subsections, as well as tag filters) for reviewing applications and web services. To make it more visually compelling, we use Open Graph data to display images and titles in our notes.

We use this plugin to fetch Open Graph data from a URL using OpenGraph.io.
Install the plugin from the Obsidian Plugin Marketplace.
In Community Plugins, search for "Metafetch" and install it.
From the Settings tab, click on "Metafetch" and configure the settings.
_This Obsidian plugin works for
Get at least a Microlink or OpenGraph.io API key and add it to the settings. If you only have one, only the commands related to the one you add will work.
Open the Command Palette with Command + P (or Control + P on Windows & Linux) and type "Metafetch".
Select "Fetch Open Graph Data for Current File".
Magic!
Warning: This is built assuming pnpm is your package manager. If you are using yarn or npm, you will need to modify the package.json file and may need to modify the code.
Fork the repository, clone it to your local machine, and install dependencies:
pnpm install
pnpm add -D esbuild @types/node builtin-modules
pnpm build
pnpm dev
"devDependencies": {
"@types/node": "^24.0.12",
"@typescript-eslint/eslint-plugin": "8.36.0",
"@typescript-eslint/parser": "8.36.0",
"builtin-modules": "5.0.0",
"esbuild": "0.25.6",
"eslint": "^9.30.1",
"tslib": "2.8.1",
"typescript": "5.8.3"
},
"dependencies": {
"dev": "^0.1.3",
"obsidian": "latest",
"zod": "^4.0.0"
}
If you're like us, you have a directory housing all your code projects. To use your plugin as you develop it, just create a symbolic link. Here is my example, but you will need to use your own path structure:
ln -s /Users/mpstaton/code/lossless-monorepo/obsidian-plugin-starter /Users/mpstaton/content-md/lossless/.obsidian/plugins/
Once you symbolic link from your code to your Obsidian plugins directory, you can develop the plugin but you need to: