Skip to main content
GET
/
posts
Get posts
curl --request GET \
  --url https://api.supernormal.com/api/v1/posts \
  --header 'X-API-TOKEN: <api-key>'
{
  "id": "<string>",
  "title": "<string>",
  "published_at": "<string>",
  "summary": "<string>",
  "seen": true
}

Authorizations

X-API-TOKEN
string
header
required

Query Parameters

limit
integer

The number of posts to return. Default is 20. Max is 100

offset
integer

The number of posts to skip. Default is 0

scope
enum<string>

Whether to return posts shared with the current caller or their own posts

Available options:
latest,
shared

Response

200 - application/json

Posts 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