-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
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.
- API listing: https://rapidapi.com/monetize250/api/meeting-summarization-api
- Demo: https://monetize250.github.io/instant-meeting-summarizer/
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!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels