Skip to main content
GET
https://api.usenotra.com
/
v1
/
posts
/
{postId}
Get a single post
curl --request GET \
  --url https://api.usenotra.com/v1/posts/{postId} \
  --header 'Authorization: Bearer <token>'
{
  "organization": {
    "id": "<string>",
    "slug": "<string>",
    "name": "<string>",
    "logo": "<string>"
  },
  "post": {
    "id": "<string>",
    "title": "<string>",
    "slug": "<string>",
    "content": "<string>",
    "markdown": "<string>",
    "recommendations": "<string>",
    "contentType": "<string>",
    "status": "draft",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "sourceMetadata": "<unknown>"
  }
}

Authorizations

Authorization
string
header
required

Send your API key in the Authorization header as Bearer API_KEY.

Path Parameters

postId
string
required
Minimum string length: 1
Example:

"post_123"

Response

Post fetched successfully

organization
object
required
post
object
required