---
title: "Get a single post"
method: GET
path: "/v1/posts/{postId}"
tags: ["Content"]
---

# Get a single post

`GET /v1/posts/{postId}`

## Path parameters

- `postId` string, required

## Response `200`

Post fetched successfully

- object
  - `organization` object, required
    - `id` string, required
    - `slug` string, required
    - `name` string, required
    - `logo` string, nullable, required
  - `post` object, nullable, required
    - `id` string, required
    - `title` string, required
    - `slug` string, nullable, required
    - `content` string, required — Rendered HTML for text posts. For image posts, this is the public CDN URL of the rendered image.
    - `htmlUrl` string, nullable, required — Public CDN URL of the generated HTML artifact for image posts. Null for non-image posts.
    - `markdown` string, nullable, required — Markdown source for text posts. Null for image posts.
    - `rawHtml` string, nullable, required — Legacy inline generated HTML for image posts. New generated image HTML is stored as htmlUrl. Null for non-image posts.
    - `recommendations` string, nullable, required
    - `contentType` 'changelog' | 'linkedin_post' | 'twitter_post' | 'blog_post' | 'investor_update' | 'image', required
    - `sourceMetadata` unknown
    - `status` 'draft' | 'published', required
    - `createdAt` string, required
    - `updatedAt` string, required

## Other responses

- `400` — Invalid path params
- `401` — Missing or invalid API key
- `403` — Forbidden
- `404` — Post or organization not found
- `503` — Authentication service unavailable

---

[API](https://skmtc.net/usenotra/apis/notra-api.md) · [All operations](https://skmtc.net/usenotra/apis/notra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/usenotra/notra-api/versions/4e07496e06b0/schema)
