Skip to content

Suggestion: Integrate Meeting Summarization API #4

Description

@monetize250

Hello and thank you for open‑sourcing your meeting transcription tool!

I built a lightweight Meeting Summarization & Action Items API that accepts plain‑text transcripts and returns a concise summary plus a checklist of next steps. It runs fast without external AI models and is available as a freemium service on RapidAPI.

You can integrate it into your project with a simple POST request:

import requests
url = "https://meeting-summarization-api.p.rapidapi.com/summarize"
payload = {"text": "...transcript...", "ratio": 0.3}
headers = {
    "Content-Type": "application/json",
    "X-RapidAPI-Key": "<YOUR_RAPIDAPI_KEY>",
    "X-RapidAPI-Host": "meeting-summarization-api.p.rapidapi.com"
}
print(requests.post(url, json=payload, headers=headers).json())

I hope this helps your users quickly distil long meetings into actionable next steps. Feel free to reach out if you have any questions!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions