Real-time Livestream Transcriptions Made Simple
Streamline your data ingestion with our easy-to-integrate API for instant transcriptions from the top social media websites.
We support the top social media brands
Just a couple lines of code
Get real time transcript and image data in your app in weeks minutes.
1import socketio2sio = socketio.Client()34@sio.on("livestream_data_event")5def livestream_data_event(data):6 print(data)78sio.connect("https://data.tryconduit.io", auth={"Authorization": "sb_...xxxx"}, wait_timeout=10)910subscription = {11 "stream_url": "https://www.twitch.tv/...",12 "content_type": ["all"]13}1415sio.emit("subscribe", subscription)