supernormal Posts API

Operations about posts

Operations 2

GET /posts Get posts
GET /posts/{id} Get a post

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/supernormal-posts-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

supernormal-posts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Supernormal Agent Sessions Posts API
  description: Documentation for the Supernormal API
  license:
    name: MIT
  version: 1.0.0
servers:
- url: https://api.supernormal.com/api/v1
security:
- ApiKeyAuth: []
tags:
- name: Posts
  description: Operations about posts
paths:
  /posts:
    get:
      tags:
      - Posts
      summary: Get posts
      description: Returns the current user's posts. Default limit is 20.
      security:
      - ApiKeyAuth:
        - posts:read
      parameters:
      - name: limit
        in: query
        description: The number of posts to return. Default is 20. Max is 100
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The number of posts to skip. Default is 0
        required: false
        schema:
          type: integer
      - name: scope
        in: query
        description: Whether to return posts shared with the current caller or their own posts
        required: false
        schema:
          type: string
          enum:
          - latest
          - shared
      responses:
        '200':
          description: Posts response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Post'
  /posts/{id}:
    get:
      tags:
      - Posts
      summary: Get a post
      description: Returns a single post
      security:
      - ApiKeyAuth:
        - posts:read
      parameters:
      - name: id
        in: path
        description: The ID of the post to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Post response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PostDetail'
components:
  schemas:
    Note:
      type: object
      properties:
        id:
          description: The note’s ID
          type: string
        body:
          description: The note’s body
          type: string
        timestamp:
          description: The note’s approximate transcript timestamp in seconds
          type: number
        parent_id:
          description: The note’s parent ID. Present if the note is a child of another note
          type: string
        created_at:
          description: The note’s created at time
          type: string
        display_name:
          description: The note’s display name
          type: string
        type:
          description: The note’s type
          type: string
    PostDetail:
      type: object
      allOf:
      - $ref: '#/components/schemas/Post'
      - type: object
        properties:
          notes:
            description: The post's notes
            type: array
            items:
              $ref: '#/components/schemas/Note'
          transcript:
            description: The post's transcript
            type: array
            items:
              $ref: '#/components/schemas/TranscriptSegment'
    Post:
      type: object
      properties:
        id:
          description: The post’s ID
          type: string
        title:
          description: The post’s title
          type: string
        published_at:
          description: The post’s published at time in ISO 8601 format
          type: string
        summary:
          description: A brief description of the meeting
          type: string
        seen:
          description: Whether the post has been seen by the current caller
          type: boolean
    TranscriptSegment:
      type: object
      properties:
        start:
          description: The transcript’s start time
          type: number
        end:
          description: The transcript’s end time
          type: number
        content:
          description: The transcript’s content
          type: string
        author_name:
          description: The transcript’s author name
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-TOKEN
      x-scopes:
        user:read: Read user information
        calendar_events:read: Read calendar events
        calendar_events:write: Write calendar events