> 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 # Method name: getPost(postId: string, options: GetPostOptions) # Method package: wixBlogBackend # Method menu location: wixBlogBackend --> posts --> getPost # Method Link: https://dev.wix.com/docs/velo/apis/wix-blog-backend/posts/get-post.md # Method Description: Gets a post by the specified ID. The `getPost()` function returns a Promise that resolves to a post whose ID matches the given ID. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a post by ID ```javascript import { posts } from 'wix-blog-backend'; /* Sample postId value: * 'ccbb6257-ed0e-4521-97df-8b5b207adb00' */ export async function getPostFunction(postId) { try { const result = await posts.getPost(postId); const title = result.post.title; const excerpt = result.post.excerpt; console.log('Retrieved Result:', result); return result; } catch (error) { console.error(error); }; } /* Promise resolves to: * { * "post": { * "_id": "ccbb6257-ed0e-4521-97df-8b5b207adb00", * "categoryIds": [ * "1ea22fce-bc3c-4b78-9422-f0f367f8628e" * ], * "commentingEnabled": true, * "excerpt": "Create a blog post subtitle that summarizes your post in a few short, punchy sentences and entices your audience to continue reading....", * "featured": true, * "firstPublishedDate": "2020-08-05T21:00:00.000Z", * "hashtags": [ * "sea", * "sun" * ], * "heroImage": "" * "language": "en", * "lastPublishedDate": "2020-08-05T21:00:00.000Z", * "media": { * "wixMedia": { * "image": "wix:image://v1/75059a_9f8cd2f1282c4dc7ae9a4bea155e2661~mv2.jpg#originWidth=602&originHeight=773" * }, * "displayed": true, * "custom": false * }, * "memberId": "4b9f4b64-0792-481e-9289-b2550c1bb7ea", * "minutesToRead": 1, * "moderationDetails": {}, * "pinned": false, * "preview": false, * "pricingPlanIds": [ * "b6e94a0c-4d0f-435e-9602-0dd61d2aca37" * ], * "relatedPostIds": [ * "425a5dca-c32d-40e6-b2d7-a8ffa3addded" * ], * "slug": "my-vacation", * "tagIds": [ * "b698f939-cab5-419b-9966-ba0fa3316de9" * ], * "title": "My vacation", * "translationId": "3cd710b7-c28d-4547-9b8a-3c1ec776064b", * "contentId": "62a9b7a4f276b0918225d8ef" * } * } */ ``` ## Get a post by ID (export from backend code) ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { posts } from 'wix-blog-backend'; /* Sample postId value: * 'ccbb6257-ed0e-4521-97df-8b5b207adb00' */ export const getPostFunction = webMethod(Permissions.Anyone, async (postId) => { try { const result = await posts.getPost(postId); const title = result.post.title; const excerpt = result.post.excerpt; console.log('Retrieved Result:', result); return result; } catch (error) { console.error(error); }; }); /* Promise resolves to: * { * "post": { * "_id": "ccbb6257-ed0e-4521-97df-8b5b207adb00", * "categoryIds": [ * "1ea22fce-bc3c-4b78-9422-f0f367f8628e" * ], * "commentingEnabled": true, * "excerpt": "Create a blog post subtitle that summarizes your post in a few short, punchy sentences and entices your audience to continue reading....", * "featured": true, * "firstPublishedDate": "2020-08-05T21:00:00.000Z", * "hashtags": [ * "sea", * "sun" * ], * "heroImage": "" * "language": "en", * "lastPublishedDate": "2020-08-05T21:00:00.000Z", * "media": { * "wixMedia": { * "image": "wix:image://v1/75059a_9f8cd2f1282c4dc7ae9a4bea155e2661~mv2.jpg#originWidth=602&originHeight=773" * }, * "displayed": true, * "custom": false * }, * "memberId": "4b9f4b64-0792-481e-9289-b2550c1bb7ea", * "minutesToRead": 1, * "moderationDetails": {}, * "pinned": false, * "preview": false, * "pricingPlanIds": [ * "b6e94a0c-4d0f-435e-9602-0dd61d2aca37" * ], * "relatedPostIds": [ * "425a5dca-c32d-40e6-b2d7-a8ffa3addded" * ], * "slug": "my-vacation", * "tagIds": [ * "b698f939-cab5-419b-9966-ba0fa3316de9" * ], * "title": "My vacation", * "translationId": "3cd710b7-c28d-4547-9b8a-3c1ec776064b", * "contentId": "62a9b7a4f276b0918225d8ef" * } * } */ ``` ## Get a post by ID with additional fields ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { posts } from 'wix-blog-backend'; /* Sample postId value: * 'ccbb6257-ed0e-4521-97df-8b5b207adb00' * * Sample options value: * { * fieldsets: [ * 'URL', * 'CONTENT_TEXT' * ] * } */ export const getPostFunction = webMethod(Permissions.Anyone, async (postId, options) => { try { const result = await posts.getPost(postId, options); const title = result.post.title; const contentText = result.post.contentText; console.log('Retrieved Result:', result); return result; } catch (error) { console.error(error); } }); /* Promise resolves to: * { * "post": { * "_id": "ccbb6257-ed0e-4521-97df-8b5b207adb00", * "categoryIds": [ * "1ea22fce-bc3c-4b78-9422-f0f367f8628e" * ], * "commentingEnabled": true, * "contentText": "Create a blog post subtitle that summarizes your post in a few short, punchy sentences and entices your audience to continue reading. #sea #sun", * "excerpt": "Create a blog post subtitle that summarizes your post in a few short, punchy sentences and entices your audience to continue reading....", * "featured": true, * "firstPublishedDate": "2020-08-05T21:00:00.000Z", * "hashtags": [ * "sea", * "sun" * ], * "heroImage": "" * "language": "en", * "lastPublishedDate": "2020-08-05T21:00:00.000Z", * "media": { * "wixMedia": { * "image": "wix:image://v1/75059a_9f8cd2f1282c4dc7ae9a4bea155e2661~mv2.jpg#originWidth=602&originHeight=773" * }, * "displayed": true, * "custom": false * }, * "memberId": "4b9f4b64-0792-481e-9289-b2550c1bb7ea", * "minutesToRead": 1, * "moderationDetails": {}, * "pinned": false, * "preview": false, * "pricingPlanIds": [ * "b6e94a0c-4d0f-435e-9602-0dd61d2aca37" * ], * "relatedPostIds": [ * "425a5dca-c32d-40e6-b2d7-a8ffa3addded" * ], * "slug": "my-vacation", * "tagIds": [ * "b698f939-cab5-419b-9966-ba0fa3316de9" * ], * "title": "My vacation", * "translationId": "3cd710b7-c28d-4547-9b8a-3c1ec776064b", * "url": "http://https://tadasz7.wixsite.com/blog-velo-events/post/my-vacation" * } * } */ ``` ---