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!
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:
I hope this helps your users quickly distil long meetings into actionable next steps. Feel free to reach out if you have any questions!