Plans tarifaires

Aucun plan tarifaire detaille n'est encore disponible pour cet outil.

Presentation detaillee
TLDRai.com Too Long; Didn't Read AI TLDWai.com Too Long; Didn't Watch AI Summarize any text with AI TL;DR AI: Too long; didn't read, helps you summarize any text into concise, easy to digest content so you can free yourself from information overload. Summarize text Summarize text from file Summarize text from website Foodics offers a cloud-based point-of-sale (POS) and restaurant management solution designed to efficiently run restaurants. The system includes features such as pay-at-table, sel… Google reCAPTCHA is an online challenge-response system that verifies whether the user is human or not by asking them to complete simple tasks, such as typing in characters from a… Höhle der Löwen" and "Wer wird Millionär" performed well on TV, with strong ratings for both programs. "Die Höhle der Löwen" reached a season-high on Vox, while "Wer wird Millionä… Segmenting words into sounds and blending the sounds together can be done without explicit instruction, as phonics skills are developed through visual displays of letters. Phonemi… Explore the impact & opportunity; Watch Doug share his vision - past, present, and future; What's New at DEI; Press Spotlight; Leaders Make the Future, Third Edition by Berrett-Ko… YouTube's language options include Afrikaans, azərbaycan, bosanskicatalà, Čeština, Cymraeg, Dansk, Deutscheesti, English (United Kingdom), English (United States), Español (España… YouTube's language options include Afrikaans, azərbaycan, bosanskicatalà, Čeština, Cymraeg, Dansk, Deutscheesti, English (United Kingdom), English (United States), Español (España… AI brings multiple threats to humanity, creating tension between mitigating some risks and potentially making others worse. The need to stay ahead of authoritarian nations in deve… Explore more summaries Total summaries made on TLDRai.com: 4,018 Privacy policy Terms of service Contact us Developers We hope you enjoy our AI tool. Our project is developed with Django. © 2026 TLDRai.com| VPS.org LLC | Made by Lou Rate this tool: ★ ★ ★ ★ ★ 3.0/5 (5 ratings) --- TLDRai.com Too Long; Didn't Read AI TLDWai.com Too Long; Didn't Watch AI Pricing If you want developer pricing, click here Monthly Annual F 6.76 * per user / month * You will be billed in US dollars. (US$7.59) Select the number of seats - + Subscribe ☝ No text summary limit 🥇 No restricted functions 🐱 Have the ability to ask for extra conversion tools to be added 16% discount F 5.62 * per user / month F 67.52 billed annually * You will be billed in US dollars. (US$75.86) Select the number of seats - + Subscribe ☝ No text summary limit 🥇 No restricted functions 🐱 Have the ability to ask for extra conversion tools to be added Total summaries made on TLDRai.com: 4,018 Privacy policy Terms of service Contact us Developers We hope you enjoy our AI tool. Our project is developed with Django. © 2026 TLDRai.com| VPS.org LLC | Made by Lou Rate this tool: ★ ★ ★ ★ ★ 2.3/5 (3 ratings) --- TLDRai.com Too Long; Didn't Read AI TLDWai.com Too Long; Didn't Watch AI Summaries history Check summaries generated with AI Foodics offers a cloud-based point-of-sale (POS) and restaurant management solution designed to efficiently run restaurants. The system includes features such as pay-at-table, sel… Google reCAPTCHA is an online challenge-response system that verifies whether the user is human or not by asking them to complete simple tasks, such as typing in characters from a… Höhle der Löwen" and "Wer wird Millionär" performed well on TV, with strong ratings for both programs. "Die Höhle der Löwen" reached a season-high on Vox, while "Wer wird Millionä… Segmenting words into sounds and blending the sounds together can be done without explicit instruction, as phonics skills are developed through visual displays of letters. Phonemi… Explore the impact & opportunity; Watch Doug share his vision - past, present, and future; What's New at DEI; Press Spotlight; Leaders Make the Future, Third Edition by Berrett-Ko… YouTube's language options include Afrikaans, azərbaycan, bosanskicatalà, Čeština, Cymraeg, Dansk, Deutscheesti, English (United Kingdom), English (United States), Español (España… YouTube's language options include Afrikaans, azərbaycan, bosanskicatalà, Čeština, Cymraeg, Dansk, Deutscheesti, English (United Kingdom), English (United States), Español (España… AI brings multiple threats to humanity, creating tension between mitigating some risks and potentially making others worse. The need to stay ahead of authoritarian nations in deve… Total summaries made on TLDRai.com: 4,018 Privacy policy Terms of service Contact us Developers We hope you enjoy our AI tool. Our project is developed with Django. © 2026 TLDRai.com| VPS.org LLC | Made by Lou Rate this tool: ★ ★ ★ ★ ★ 5.0/5 (2 ratings) --- NAV TLDRai.com shell python php javascript C# Introduction Default Base URL Authorization Summarize text Summarize text from file Summarize text from Link/URL Sign up for a developer key Introduction Welcome to the TLDRai.com platform API! Each feature is designed to help our users more easily make summaries with AI on TLDRai.com"s system. To get your API key please go to account page. Default Base URL The default base URL for TLDRai.com API is: https://api.tldrai.com/v1/ Note: for security reasons, all TLDRai.com APIs are served over HTTPS only. Authorization To use the TLDRai.com API, you’ll need the API key that is linked to your account. The authorization value should be send in Headers request. Authorization: Summarize text import requests import time import shutil import json headers = {"Authorization": "api_key"} params = { "text": "A black hole is a region in space where the gravitational pull is so strong...", } base_api_url = "https://api.tldrai.com" api_url = f"{base_api_url}/v1" def download_file(url, local_filename): url = f"{base_api_url}/{url}" with requests.get(url, stream=True) as r: with open(local_filename, "wb") as f: shutil.copyfileobj(r.raw, f) return local_filename def convert_files(api_url, params, headers): r = requests.post( url=f"{api_url}/tldr-text/", data=params, headers=headers ) return r.json() def get_results(params): if params.get("error"): print(params) return r = requests.post( url=f"{api_url}/results/", data=params ) data = r.json() finished = data.get("finished") while not finished: if int(data.get("queue_count")) > 0: print("queue: %s" % data.get("queue_count")) time.sleep(5) results = get_results(params) results = json.dumps(results) if results: break if finished: for f in data.get("files"): print(f.get("url")) download_file("%s" % f.get("url"), "%s" % f.get("filename")) return {"finished": "files downloaded"} return r.json() get_results(convert_files(api_url, params, headers)) curl -X POST \ https://api.tldrai.com/v1/tldr-text/ \ -H 'Authorization: api_key' \ -F 'text=A black hole is a region in space where the gravitational pull is so strong...' \ Get result curl -X POST \ https://api.tldrai.com/v1/results/ \ -F 'uuid=response_uuid' error) { print_r($params->error); return; } $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $results_url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, json_decode(json_encode($params), true)); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $content = json_decode(curl_exec($curl)); curl_close($curl); if ($content->finished == false) { if (intval($content->queue_count) > 0) { print_r("queue: $content->queue_count"); } sleep(5); $results = get_results($params, $results_url, $headers); return; } foreach ($content->files as $f) { download_file($f->url, $f->filename); } } $resp = convert_files($file_list, $headers, $api_url); get_results($resp, $results_url, $headers); ?> const request = require('request'); const fs = require('fs'); const api_url = 'https://api.tldrai.com/v1/tldr-text/' const results_url = 'https://api.tldrai.com/v1/results/' function convertFiles(file_list) { let formData = { "text": "A black hole is a region in space where the gravitational pull is so strong...", }; request({ url: api_url, method: 'post', formData: formData, headers: { "Authorization": "api_key", "Content-Type": "multipart/form-data", } }, function (err, res, body) { if (err) { console.error(err); return err; } getResults(JSON.parse(body)); }); } function getResults(data) { if (data.error) { console.error(data); return data.error; } request({ url: results_url, method: 'post', formData: data }, function (e, r, body) { response = JSON.parse(body); console.log(response); if (!response.finished) { setTimeout( function () { getResults(data); }, 1000 ); } console.log(response); }) } convertFiles(file_list); using System; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; class Program { static readonly HttpClient client = new HttpClient(); static async Task Main() { client.DefaultRequestHeaders.Add("Authorization", "api_key"); // Summarize text var form = new MultipartFormDataContent(); form.Add(new StringContent("A black hole is a region in space where the gravitational pull is so strong..."), "text"); var response = await client.PostAsync("https://api.tldrai.com/v1/tldr-text/", form); var result = await response.Content.ReadAsStringAsync(); var data = JsonConvert.DeserializeObject(result); // Poll for results bool finished = false; while (!finished) { var pollContent = new FormUrlEncodedContent(new[] { new KeyValuePair("uuid", (string)data.uuid) }); var pollRes = await client.PostAsync("https://api.tldrai.com/v1/results/", pollContent); var pollResult = await pollRes.Content.ReadAsStringAsync(); var pollData = JsonConvert.DeserializeObject(pollResult); finished = (bool)pollData.finished; if (!finished) await Task.Delay(5000); else Console.WriteLine(pollResult); } } } Response /path/to/local/result.txt HTTP Request POST /tldr-text/ Query parameters Parameter Type Description Example text Required The full text you want summary A black hole is a region in space where the gravitational pull is so strong... Summarize text from file import requests import time import shutil import json headers = {"Authorization": "api_key"} params = { } file_path = "path/to/test.pdf" base_api_url = "https://api.tldrai.com" api_url = f"{base_api_url}/v1" def download_file(url, local_filename): url = f"{base_api_url}/{url}" with requests.get(url, stream=True) as r: with open(local_filename, "wb") as f: shutil.copyfileobj(r.raw, f) return local_filename def convert_files(api_url, params, headers): files = [eval(f'("files", open("{file_path}", "rb"))')] r = requests.post( url=f"{api_url}/tldr-file/", files=files, data=params, headers=headers ) return r.json() def get_results(params): if params.get("error"): print(params) return r = requests.post( url=f"{api_url}/results/", data=params ) data = r.json() finished = data.get("finished") while not finished: if int(data.get("queue_count")) > 0: print("queue: %s" % data.get("queue_count")) time.sleep(5) results = get_results(params) results = json.dumps(results) if results: break if finished: for f in data.get("files"): print(f.get("url")) download_file("%s" % f.get("url"), "%s" % f.get("filename")) return {"finished": "files downloaded"} return r.json() get_results(convert_files(api_url, params, headers)) curl -X POST \ https://api.tldrai.com/v1/tldr-file/ \ -H 'Authorization: api_key' \ -F 'files=@test_files/text.pdf' Get result curl -X POST \ https://api.tldrai.com/v1/results/ \ -F 'uuid=response_uuid' $file) { $post_data['file[' . $index . ']'] = curl_file_create( realpath($file), mime_content_type($file), basename($file) ); } $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $api_url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $content = curl_exec($curl); curl_close($curl); return json_decode($content); } function get_results($params, $results_url, $headers) { if ($params->error) { print_r($params->error); return; } $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $results_url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, json_decode(json_encode($params), true)); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $content = json_decode(curl_exec($curl)); curl_close($curl); if ($content->finished == false) { if (intval($content->queue_count) > 0) { print_r("queue: $content->queue_count"); } sleep(5); $results = get_results($params, $results_url, $headers); return; } foreach ($content->files as $f) { download_file($f->url, $f->filename); } } $resp = convert_files($file_list, $headers, $api_url); get_results($resp, $results_url, $headers); ?> const request = require('request'); const fs = require('fs'); let file_list = ['/test_files/text.pdf'] const api_url = 'https://api.tldrai.com/v1/tldr-file/' const results_url = 'https://api.tldrai.com/v1/results/' function convertFiles(file_list) { let formData = {}; for (var i = 0; i < file_list.length; i++) { formData['files'] = fs.createReadStream(file_list[i]); } request({ url: api_url, method: 'post', formData: formData, headers: { "Authorization": "api_key", "Content-Type": "multipart/form-data", } }, function (err, res, body) { if (err) { console.error(err); return err; } getResults(JSON.parse(body)); }); } function getResults(data) { if (data.error) { console.error(data); return data.error; } request({ url: results_url, method: 'post', formData: data }, function (e, r, body) { response = JSON.parse(body); console.log(response); if (!response.finished) { setTimeout( function () { getResults(data); }, 1000 ); } console.log(response); }) } convertFiles(file_list); using System; using System.IO; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; class Program { static readonly HttpClient client = new HttpClient(); static async Task Main() { client.DefaultRequestHeaders.Add("Authorization", "api_key"); // Upload document file var form = new MultipartFormDataContent(); form.Add(new ByteArrayContent(File.ReadAllBytes("test.pdf")), "files", "test.pdf"); var response = await client.PostAsync("https://api.tldrai.com/v1/tldr-file/", form); var result = await response.Content.ReadAsStringAsync(); var data = JsonConvert.DeserializeObject(result); // Poll for results bool finished = false; while (!finished) { var pollContent = new FormUrlEncodedContent(new[] { new KeyValuePair("uuid", (string)data.uuid) }); var pollRes = await client.PostAsync("https://api.tldrai.com/v1/results/", pollContent); var pollResult = await pollRes.Content.ReadAsStringAsync(); var pollData = JsonConvert.DeserializeObject(pollResult); finished = (bool)pollData.finished; if (!finished) await Task.Delay(5000); else Console.WriteLine(pollResult); } } } Response /path/to/local/result.txt HTTP Request POST /tldr-file/ Query parameters Parameter Type Description Example files Required Tell the AI the language in which to return the summary of the video .pdf, .doc, .docx, .txt Summarize text from Link/URL import requests import time import shutil import json headers = {"Authorization": "api_key"} params = { "url": "https://loualcala.com/sabor-a-exito/", } file_path = "path/to/text.pdf" base_api_url = "https://api.tldrai.com" api_url = f"{base_api_url}/v1" def download_file(url, local_filename): url = f"{base_api_url}/{url}" with requests.get(url, stream=True) as r: with open(local_filename, "wb") as f: shutil.copyfileobj(r.raw, f) return local_filename def convert_files(api_url, params, headers): r = requests.post( url=f"{api_url}/tldr-url/", data=params, headers=headers ) return r.json() def get_results(params): if params.get("error"): print(params) return r = requests.post( url=f"{api_url}/results/", data=params ) data = r.json() finished = data.get("finished") while not finished: if int(data.get("queue_count")) > 0: print("queue: %s" % data.get("queue_count")) time.sleep(5) results = get_results(params) results = json.dumps(results) if results: break if finished: for f in data.get("files"): print(f.get("url")) download_file("%s" % f.get("url"), "%s" % f.get("filename")) return {"finished": "files downloaded"} return r.json() get_results(convert_files(api_url, params, headers)) curl -X POST \ https://api.tldrai.com/v1/tldr-url/ \ -H 'Authorization: api_key' \ -F 'url=https://loualcala.com/sabor-a-exito/' Get result curl -X POST \ https://api.tldrai.com/v1/results/ \ -F 'uuid=response_uuid' error) { print_r($params->error); return; } $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $results_url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_POST, 1); curl_setopt($curl, CURLOPT_POSTFIELDS, json_decode(json_encode($params), true)); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $content = json_decode(curl_exec($curl)); curl_close($curl); if ($content->finished == false) { if (intval($content->queue_count) > 0) { print_r("queue: $content->queue_count"); } sleep(5); $results = get_results($params, $results_url, $headers); return; } foreach ($content->files as $f) { download_file($f->url, $f->filename); } } $resp = convert_files($headers, $api_url); get_results($resp, $results_url, $headers); ?> const request = require('request'); const fs = require('fs'); const api_url = 'https://api.tldrai.com/v1/tldr-url/' const results_url = 'https://api.tldrai.com/v1/results/' function convertFiles() { let formData = { "url": "https://loualcala.com/sabor-a-exito/", }; request({ url: api_url, method: 'post', formData: formData, headers: { "Authorization": "api_key", "Content-Type": "multipart/form-data", } }, function (err, res, body) { if (err) { console.error(err); return err; } getResults(JSON.parse(body)); }); } function getResults(data) { if (data.error) { console.error(data); return data.error; } request({ url: results_url, method: 'post', formData: data }, function (e, r, body) { response = JSON.parse(body); console.log(response); if (!response.finished) { setTimeout( function () { getResults(data); }, 1000 ); } console.log(response); }) } convertFiles(); using System; using System.Net.Http; using System.Threading.Tasks; using Newtonsoft.Json; class Program { static readonly HttpClient client = new HttpClient(); static async Task Main() { client.DefaultRequestHeaders.Add("Authorization", "api_key"); // Summarize URL var form = new MultipartFormDataContent(); form.Add(new StringContent("https://loualcala.com/sabor-a-exito/"), "url"); var response = await client.PostAsync("https://api.tldrai.com/v1/tldr-url/", form); var result = await response.Content.ReadAsStringAsync(); var data = JsonConvert.DeserializeObject(result); // Poll for results bool finished = false; while (!finished) { var pollContent = new FormUrlEncodedContent(new[] { new KeyValuePair("uuid", (string)data.uuid) }); var pollRes = await client.PostAsync("https://api.tldrai.com/v1/results/", pollContent); var pollResult = await pollRes.Content.ReadAsStringAsync(); var pollData = JsonConvert.DeserializeObject(pollResult); finished = (bool)pollData.finished; if (!finished) await Task.Delay(5000); else Console.WriteLine(pollResult); } } } Reponse /path/to/local/result.txt HTTP Request POST /tldr-url/ Query parameters Parameter Type Description Example url Required The link of the text you want to summarize. https://loualcala.com/sabor-a-exito/ shell python php javascript C#