Highlight terms in text
API · /highlight-api
Highlight API
Highlight search terms in text. The highlight endpoint wraps every match of one or more terms in a marker — defaulting to <mark>…</mark>, or any open/close strings you choose (** for Markdown, ANSI codes for the terminal, a CSS span, anything) — and returns the marked-up text and a match count. The snippets endpoint returns short excerpts of the surrounding context around each match, the way a search-results page shows where your query appears. Matching is case-insensitive by default with optional whole-word mode, and terms are matched literally (regex characters are safely escaped). Perfect for search results and in-page find, keyword spotting, log review and document previews. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. Distinct from search, summarization and diff APIs.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 86 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,674
- attiva
- Chiamate totali
- 39
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 1,215 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,215 llamadas/mes
- 2 req/seg
- Resaltado + fragmentos
- Sin tarjeta de crédito
Starter
€2.55 /mese
- 10,550 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 10.55k calls/month
- 8 req/sec
- Custom markers, whole-word
- Email support
Pro
€22.45 /mese
- 156,500 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 156.5k calls/month
- 20 req/sec
- Search / preview pipelines
- Priority support
Mega
€60.45 /mese
- 825,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 825k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Stemmer API
Reduzca palabras a su raíz lingüística (stem) con los algoritmos clásicos de stemming Snowball — running → run, fishing → fish, nationalization → nation — en 24 idiomas, incluyendo inglés, alemán, francés, español, italiano, portugués, neerlandés, ruso, árabe, finlandés, sueco y más. Realice el stemming de un texto completo (cada palabra, devolviendo tanto el mapeo palabra por palabra como el texto completamente procesado) o de una sola palabra. El stemming es el paso de normalización central detrás de los motores de búsqueda, la expansión de consultas, la indexación de texto, la coincidencia de palabras clave y el preprocesamiento de PNL. Cálculo local puro — sin clave, sin servicio de terceros, instantáneo. En vivo, nada almacenado. 4 endpoints. Distinto del análisis de sentimiento/PNL y la coincidencia difusa de cadenas.
api.oanor.com/stemmer-api
API de Internet Archive
Internet Archive como API — la biblioteca digital sin fines de lucro de más de 40 millones de elementos de acceso gratuito: libros y textos, audio y conciertos de música en vivo, películas y video, software, imágenes y páginas web archivadas. Busque en todo el archivo por palabra clave con sintaxis completa de campos Lucene (por creador, título, tema, colección y más), filtre por tipo de medio (textos, audio, películas, imagen, software, web, conciertos en vivo) y ordene por descargas, fecha o popularidad de tendencia, obteniendo el identificador, título, creador, tipo de medio, año, recuento de descargas y colecciones de cada elemento; lea los metadatos completos de un elemento, incluida su descripción, creadores, temas, idioma, colecciones, editor, licencia, fechas y tamaño total; enumere los archivos descargables de un elemento con su formato, tamaño, duración y una URL de descarga directa; y busque la instantánea más cercana de Wayback Machine de cualquier página web: el indicador de archivado, la fecha de la instantánea y el estado HTTP, y el enlace de web.archive.org, opcionalmente cerca de una marca de tiempo objetivo. Ideal para investigación, preservación digital, descubrimiento de medios, construcción de conjuntos de datos, recuperación de enlaces rotos y aplicaciones que muestran cultura de dominio público y con licencia abierta. Datos de Internet Archive (archive.org).
api.oanor.com/archive-api
PDF 转文本 API
从 PDF 文档中提取文本:完整的文档文本、每页单独的文本、文档元数据(页数、标题、作者、主题、关键词、创建者、生产者、创建和修改日期、PDF 版本、加密和大纲标志),以及全文搜索功能,返回匹配的页面及其命中次数和上下文片段。通过公共 URL、base64 或原始二进制请求体提供 PDF;仅接受公共 http/https URL,私有或内部主机被阻止。纯服务器端计算(pdf.js,无第三方上游,无每页云成本)。适用于文档索引和搜索、数据提取和 ETL、发票和合同处理、归档和内容管道。
api.oanor.com/pdftext-api
Stopwords API
Stopword lists and removal for 58 languages. Fetch the full stopword list for a language, see all supported languages with their word counts, check whether a single word is a stopword, or strip stopwords out of a block of text to get a clean keyword stream. Built on the open stopwords-iso dataset and served entirely in-memory, so responses are instant and the service is always available. Ideal for search indexing and relevance, NLP preprocessing and text mining, keyword extraction, tag generation and content tooling.
api.oanor.com/stopwords-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Highlight API?
Qual è il limite di velocità di Highlight API?
Quanto costa Highlight API?
Posso cancellare l'abbonamento in qualsiasi momento?
Highlight API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/highlight-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/highlight-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/highlight-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/highlight-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.