tl;dv Notes API

Retrieve AI-generated meeting notes

Operations 2

GET /v1alpha1/meetings/{meetingId}/notes Retrieve meeting notes #
GET /v1alpha1/meetings/{meetingId}/highlights Retrieve meeting highlights #

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/tl-dv-notes-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

tl-dv-notes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: tl;dv Meetings Notes API
  version: v1alpha1
  description: 'Public API for tl;dv, the AI meeting notetaker for Zoom, Google Meet and Microsoft Teams. Programmatic access to recorded meetings, transcripts and AI-generated notes, plus meeting import and webhook event delivery.

    '
  contact:
    name: tl;dv Developer Support
    email: dev@tldv.io
    url: https://doc.tldv.io
  x-apievangelist-generated: true
servers:
- url: https://pasta.tldv.io
  description: Production
security:
- ApiKeyAuth: []
tags:
- name: Notes
  description: Retrieve AI-generated meeting notes
paths:
  /v1alpha1/meetings/{meetingId}/notes:
    get:
      operationId: getNotes
      summary: Retrieve meeting notes
      description: Retrieve the AI-generated notes for a meeting.
      tags:
      - Notes
      parameters:
      - $ref: '#/components/parameters/MeetingId'
      responses:
        '200':
          description: The meeting notes.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Notes'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
  /v1alpha1/meetings/{meetingId}/highlights:
    get:
      operationId: getHighlights
      summary: Retrieve meeting highlights
      description: Retrieve highlights for a meeting.
      deprecated: true
      tags:
      - Notes
      parameters:
      - $ref: '#/components/parameters/MeetingId'
      responses:
        '200':
          description: The meeting highlights.
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  responses:
    Forbidden:
      description: The API key is not permitted to access this resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        name:
          type: string
        message:
          type: string
    Notes:
      type: object
      properties:
        meetingId:
          type: string
        markdownContent:
          type: string
        structuredNotes:
          type: array
          items:
            type: object
            properties:
              segmentId:
                type: string
              timestamp:
                type: number
              text:
                type: string
              topicId:
                type: string
        topics:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              order:
                type: integer
              title:
                type: string
              summary:
                type: string
  parameters:
    MeetingId:
      name: meetingId
      in: path
      required: true
      schema:
        type: string
      description: Unique identifier of the meeting.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API key issued from tl;dv account settings (https://tldv.io/app/settings/personal-settings/api-keys), sent on the x-api-key request header.

        '