> 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: Categories ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-blog-backend/categories/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Categories API allows a site visitor to get and query blog categories. Categories allow you to sort your blog posts into different topics. They give your readers a general idea of what your blog posts are about. A [Category Menu](https://support.wix.com/en/article/wix-blog-adding-and-customizing-a-category-menu) can provide your blog with extra organization and structure. Use the Categories API to search for the different topics your blog covers. There can be up to 100 categories per language on a blog, and up to 10 categories per post. Categories appear in the Category Menu in the order they were created. To use the Categories API, import `{ categories }` from the `wix-blog-backend` module: ```javascript import { categories } from 'wix-blog-backend'; ```