> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/introduction.md ## Article Content: # About the Likes API The Likes API allows you to manage likes on blog content. This API provides a liking system that can handle likes for blog posts, comments, and other blog-related content. With the Likes API, you can: - [Create](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/create-like.md) likes for any blog content. - [Retrieve](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/get-like.md) individual likes or [query](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/query-likes.md) likes created by the authenticated visitor or member. - [Delete](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/delete-like.md) likes using either the like ID or content reference (FQDN + entity ID). The API uses [FQDN-based content identification](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/platform/about-fqdns.md), allowing it to work across different content types. For example, for the related Blog content (posts or comments) you'll pass the `wix.blog.v3.post` FQDN. Visitor or member authentication is required for creating and deleting likes. ## Before you begin It's important to note the following points before starting to code: - A Wix user must install the [Wix Blog](https://www.wix.com/app-market/web-solution/blog) app on their site. - The [Query Likes](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/query-likes.md) and [Get Like](https://dev.wix.com/docs/api-reference/business-solutions/blog/likes/get-like.md) methods only returns likes created by the currently authenticated site visitor or member through the API. It doesn't return: - Likes created through the blog's UI. - Likes created by other site visitors. - A complete list of all likes for a piece of content. ## Terminology - **FQDN (Fully Qualified Domain Name)**: A unique identifier for the type of blog content being liked (for example, `wix.blog.v3.post` for blog posts). - **Like**: A record representing a user's appreciation for specific blog content. @sdk_package_setup