Extract emoji
API · /emojistrip-api
Emoji Strip API
Strip, extract and count emoji in any text. The strip endpoint removes every emoji from a string — or replaces each one with a marker you choose — and gets multi-code-point emoji right: ZWJ sequences like the family 👩👩👧👦, skin-tone modifiers (👍🏽), country flags (🇩🇪), keycaps (1️⃣) and variation selectors all count as a single emoji, so nothing is left half-deleted. The extract endpoint lists every emoji it finds with its position in the text and returns per-emoji and unique counts, ideal for analytics and moderation. A bare ©, ® or ™ is deliberately left alone unless it carries an emoji variation selector, and plain digits are never touched. Perfect for cleaning user input before search indexing or storage, sanitising usernames and display names, moderation and analytics, and preparing text for systems that choke on emoji. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This cleans and extracts emoji from text; to look an emoji up by name or shortcode use an emoji database API, and to count graphemes use a text-segmentation API.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 100 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,033
- attiva
- Chiamate totali
- 39
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 1,735 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,735 calls/month
- 2 req/sec
- Strip + extract
- No credit card
Starter
€3.25 /mese
- 11,250 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 11.25k calls/month
- 8 req/sec
- Custom replacement + counts
- Email support
Pro
€23.15 /mese
- 163,500 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 163.5k calls/month
- 20 req/sec
- Sanitize / moderation / analytics pipelines
- Priority support
Mega
€61.15 /mese
- 860,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 860k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Text Segmentation API
Count and split text the way people actually read it, using Unicode-correct segmentation. The count endpoint returns the number of grapheme clusters — the real, user-perceived characters, so a family emoji counts as 1 (not 7) and an accented letter as 1 — alongside words, sentences, code points, UTF-16 code units (the naive string length that over-counts) and UTF-8 byte length. This is exactly what character-limit fields, tweet/SMS counters and validation need so the count agrees with what the user sees. The segment endpoint splits text into grapheme, word or sentence segments (word segments are flagged word-like versus punctuation and spaces) and is locale-aware, so Japanese, Chinese and Thai word boundaries come out right. Everything is computed locally with no network calls. A Unicode text segmenter — distinct from the Unicode codepoint database (unicode), the case/text-utilities toolkit (text) and string similarity (similarity). No upstream key, no cache.
api.oanor.com/segmenter-api
Emoji API
Uma base de dados completa de emojis em uma API rápida. Pesquise aproximadamente 1.870 emojis por nome, palavra-chave, alias ou tag, consulte um único emoji pelo seu alias (como rocket ou :fire:) ou pelo próprio caractere do emoji, navegue por qualquer uma das nove categorias Unicode ou obtenha emojis aleatórios (opcionalmente de uma categoria). Cada emoji vem com seu nome, categoria, aliases, tags de pesquisa, pontos de código Unicode e a versão em que foi introduzido. Construído sobre o conjunto de dados aberto do GitHub gemoji e servido inteiramente em memória, para que as respostas sejam instantâneas e o serviço esteja sempre disponível. Ideal para aplicativos de chat e mensagens, seletores e pesquisa de emojis, ferramentas sociais e de conteúdo, jogos e widgets divertidos.
api.oanor.com/emoji-api
API de Sanitizador HTML
Torne HTML não confiável seguro para exibição. Envie qualquer HTML — um comentário, uma submissão de rich-text, um trecho de e-mail ou uma página raspada — e receba de volta uma versão limpa e livre de XSS: tags <script>, manipuladores de eventos inline (onclick, onerror), URLs javascript:, <iframe>, <style> e qualquer coisa que não esteja na lista de permissões são removidos. Substitua as tags e atributos permitidos para atender às suas necessidades, ou remova links completamente. Um endpoint strip retorna texto simples com toda a marcação removida. Sanitização local pura — sem chave, sem serviço de terceiros, instantâneo. Ao vivo. 3 endpoints. Construído para conteúdo gerado pelo usuário, sistemas de comentários, editores rich-text, renderização de e-mail e qualquer lugar onde HTML não confiável chegue a um navegador. Distinto de um renderizador Markdown ou de um extrator de dados HTML.
api.oanor.com/htmlsanitize-api
HTML API
A fast, fully-local HTML toolkit: extract structured data from supplied HTML (title, meta description, canonical link, language, Open Graph and Twitter card tags, links, images, headings and word counts), convert HTML to readable plain text, list all links resolved against a base URL, and sanitize HTML with a strict allowlist (scripts, iframes, inline event handlers, javascript: URLs and unknown tags are stripped). It works on the HTML you send and never fetches URLs (for live link previews see the oanor URL Tools API). Input via the query string or the request body, up to 2 MB. Pure server-side compute, no third-party upstream, so responses are instant and always available. Ideal for scrapers and data pipelines, comment and email sanitization, RAG and content extraction, and CMS tooling.
api.oanor.com/html-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Emoji Strip API?
Qual è il limite di velocità di Emoji Strip API?
Quanto costa Emoji Strip API?
Posso cancellare l'abbonamento in qualsiasi momento?
Emoji Strip 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/emojistrip-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/emojistrip-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/emojistrip-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/emojistrip-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.