Skip to main content
GET
/
posts
/
{id}
Get a post
curl --request GET \
  --url https://api.supernormal.com/api/v1/posts/{id} \
  --header 'X-API-TOKEN: <api-key>'
{
  "id": "<string>",
  "title": "<string>",
  "published_at": "<string>",
  "summary": "<string>",
  "seen": true,
  "notes": [
    {
      "id": "<string>",
      "body": "<string>",
      "timestamp": 123,
      "parent_id": "<string>",
      "created_at": "<string>",
      "display_name": "<string>",
      "type": "<string>"
    }
  ],
  "transcript": [
    {
      "start": 123,
      "end": 123,
      "content": "<string>",
      "author_name": "<string>"
    }
  ]
}

Authorizations

X-API-TOKEN
string
header
required

Path Parameters

id
string
required

The ID of the post to get

Response

200 - application/json

Post response

id
string

The post’s ID

title
string

The post’s title

published_at
string

The post’s published at time in ISO 8601 format

summary
string

A brief description of the meeting

seen
boolean

Whether the post has been seen by the current caller

notes
object[]

The post's notes

transcript
object[]

The post's transcript