Minify CSS
API · /minify-api
Minify API
Shrink your web assets. Minify CSS, JavaScript and HTML through one simple API and get back the compact output plus how many bytes (and what percent) you saved. CSS is minified with clean-css, JavaScript with Terser (with optional name-mangling and compression toggles), and HTML with html-minifier-terser (collapsing whitespace, dropping comments and redundant attributes, and minifying inline CSS and JS). Pass the source as a parameter or in the request body (up to 5 MB). Pure local processing — no key, no third-party service, instant. Live. 4 endpoints. Built for build pipelines, on-the-fly asset optimisation, email-HTML slimming, CMS and CDN tooling, and page-speed work.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 94 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,108
- attiva
- Chiamate totali
- 60
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 1,400 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 1,400 llamadas/mes
- 2 req/seg
- CSS + JS + HTML
- Sin tarjeta de crédito
Starter
€5.80 /mese
- 23,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 23k calls/month
- 8 req/sec
- Terser toggles, savings stats
- Email support
Pro
€25.40 /mese
- 172,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 172k calls/month
- 20 req/sec
- Build / CDN pipelines
- Priority support
Mega
€61.40 /mese
- 880,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 880k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
API de optimización SVG
Reduce y limpia archivos SVG automáticamente con SVGO, el optimizador SVG estándar de la industria. El endpoint optimize elimina comentarios, metadatos, basura de editores y atributos redundantes, colapsa y fusiona rutas, y devuelve el marcado minimizado junto con los tamaños de bytes original y optimizado y el porcentaje ahorrado — típicamente 30-60% más pequeño. El endpoint data-uri va un paso más allá y devuelve una URI de datos CSS lista para pegar (codificada en URL o base64) más la regla background-image correspondiente, para que puedas incrustar iconos sin una solicitud HTTP adicional. Perfecto para pipelines de compilación, sistemas de iconos, herramientas de diseño, correo electrónico e incrustación de SVG en CSS. Procesamiento local puro — sin clave, sin servicio de terceros, instantáneo; envía marcado vía POST para archivos grandes (hasta 2 MB). En vivo, nada almacenado. 3 endpoints. Distinto de compresión de imágenes raster, generación de códigos QR/códigos y formato JSON/HTML.
api.oanor.com/svgo-api
JSON API
Un kit d'outils JSON et CSV rapide et entièrement local : validez du JSON (avec un message d'erreur clair, type et taille), affichez-le et formatez-le joliment (avec tri profond optionnel des clés), minifiez-le (en signalant les octets économisés), et convertissez entre CSV et JSON — analyse CSV RFC-4180 avec typage automatique des valeurs, et tableaux JSON vers CSV. Chaque point d'accès accepte l'entrée via la chaîne de requête ou le corps de la requête (jusqu'à 1 Mo). Calcul pur côté serveur, sans tiers en amont, donc les réponses sont instantanées et toujours disponibles. Idéal pour les pipelines de données, ETL, webhooks, outils de configuration et utilitaires pour développeurs.
api.oanor.com/json-api
Modular Scale API
Generate a modular (geometric) scale for typography and spacing. Pick a base size and a ratio — a named musical interval (minor-second, major-second, minor-third, major-third, perfect-fourth, augmented-fourth, perfect-fifth, minor-sixth, golden, major-sixth, minor-seventh, major-seventh, octave and more), a plain number like 1.25, or an interval written as 3:2 — and the scale endpoint returns a harmonious set of sizes stepping up and down from the base, where each value is base × ratio^step (step 0 is the base). Choose how many steps above and below, the rounding, and an optional unit suffix (px, rem, em) so the values come back ready to paste into CSS or design tokens. The ratios endpoint lists every named ratio with its decimal value. A modular scale gives type, spacing and layout a consistent rhythm instead of arbitrary pixel values. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This produces a numeric size scale; for colour scales and gradients use the Gradient API.
api.oanor.com/modularscale-api
Color Name API
Name any colour. The nearest endpoint takes a colour as a hex, an rgb() value, an r,g,b triple or another name and returns the closest of the 140+ CSS named colours — matched perceptually with CIE76 Lab distance, not naive RGB, so the name actually looks right — along with the distance and whether it is an exact match. The name endpoint resolves a CSS colour keyword (e.g. rebeccapurple, cornflowerblue) to its hex and RGB, and list returns the whole named-colour set. Perfect for design tools and pickers, accessibility and theming, turning brand hex codes into human labels, and naming colours in generated palettes. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. Distinct from colour conversion / palette / contrast tooling, which does not name colours.
api.oanor.com/colorname-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Minify API?
Qual è il limite di velocità di Minify API?
Quanto costa Minify API?
Posso cancellare l'abbonamento in qualsiasi momento?
Minify 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/minify-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/minify-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/minify-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/minify-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.