# Return the rendered content of a single post within the feed Provides the rendered content for a single post in a user’s feed. The post must be visible to the user or a 404 Not Found response will be returned. Endpoint: GET /v2/feed/posts/{content_id}/rendered Version: v2 Security: oauth2_as_a_user ## Path parameters: - `content_id` (integer, required) ID of the post ## Query parameters: - `locale` (string) Locale (for translatable posts) - `target_platform` (string) The target platform the post should be rendered for. Enum: "android", "email", "ios", "microapp", "public_content", "web" ## Response 200 fields (application/json): - `data` (object) - `data.id` (integer) Unique identifier for this post Example: 456 - `data.content_type` (string) The type of content. One of: article, image, link, note, or video. The content_type can determine how the post should be presented. Example: "article" - `data.locale` (string) The locale. For non-translatable posts, this value will be null. Example: "en" - `data.is_translatable` (boolean) Whether the content is translatable. Example: true - `data.rendered` (string) An HTML string containing the rendered content. Example: "Rendered Content"