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>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "sourceMetadata": "<unknown>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.usenotra.com/llms.txt

Use this file to discover all available pages before exploring further.

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
Pattern: ^[A-Za-z0-9_-]{1,100}$
Example:

"post_123"

Response

Post fetched successfully

organization
object
required
post
object
required
Last modified on May 20, 2026