SVG to CSS data URI
API · /svgo-api
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 salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 79 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,888
- attiva
- Chiamate totali
- 57
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 960 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 960 calls/month
- 2 req/sec
- Optimize + data URI
- No credit card
Starter
€2.10 /mese
- 8,100 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 8.1k calls/month
- 8 req/sec
- Multipass + base64/URL data URIs
- Email support
Pro
€21.00 /mese
- 135,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 135k calls/month
- 20 req/sec
- Build / icon-system pipelines
- Priority support
Mega
€57.00 /mese
- 695,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 695k llamadas/mes
- 50 solicitudes/segundo
- Escala de plataforma
- SLA dedicado
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Iconify Icons API
The open-source icon universe — Iconify — as an API. Search across 200,000+ icons from 200+ icon sets (Material Symbols, Material Design Icons, Font Awesome, Tabler, Lucide, Phosphor, Simple Icons, brand logos and more); get any icon's SVG path, dimensions and a ready-to-use, copy-paste `<svg>` string plus a direct .svg URL; and browse the icon sets with their author, license and icon count. Every icon is addressed by a simple `prefix:name` id (e.g. mdi:home, logos:github). Live from the official api.iconify.design. Ideal for design tools and icon pickers, no-code and website builders, documentation and component libraries, and any app that needs scalable icons. Open-source icons, each with its set's license.
api.oanor.com/iconify-api
Placeholder API
A fast, fully-local SVG generator for mockups and UIs: placeholder images (a sized rectangle with centered text and automatic contrast), initials avatars (with a deterministic colour derived from the name, in a circle or square), and identicon-style symmetric patterns generated deterministically from any seed. Every endpoint returns the JSON envelope or, with raw=1, the raw SVG so the URL can be used directly as an image source. Pure server-side compute, no third-party upstream, so responses are instant and always available. Ideal for prototypes, dashboards, user avatars, empty states and design systems.
api.oanor.com/placeholder-api
QR Code API
Genera codici QR su richiesta come PNG base64, SVG o immagine grezza incorporabile. Personalizza dimensione, margine della zona silenziosa, livello di correzione degli errori e colori di primo piano/sfondo. Codifica URL, testo, Wi-Fi, vCard e altro.
api.oanor.com/qr-api
Portfolio Optimizer API
Live mean-variance (Markowitz) portfolio optimisation that quants and allocators run across a basket of assets, computed on demand from the price series you pass in — no key, no cache, nothing stored. The optimize endpoint returns the two cornerstone portfolios: the minimum-variance portfolio and the maximum-Sharpe (tangency) portfolio, each with its optimal weights, expected return, volatility and Sharpe ratio. The frontier endpoint traces the efficient frontier — a set of optimal risk/return points and the weights that achieve them — so you can plot the whole risk/return curve. The stats endpoint returns the per-asset annualised return and volatility plus the full correlation and covariance matrices, the raw material behind the optimisation. It exploits diversification: by combining assets with low or negative correlation the optimiser finds a portfolio whose volatility is lower than any single holding. Works for any basket — stocks, funds, ETFs, crypto, FX or commodities. This is a multi-asset allocation engine, fundamentally different from single-asset risk and CAPM tools: it answers how to weight several assets together, not how one behaves. Weights can be negative, representing a short leg, as in classic unconstrained Markowitz. Computed locally and deterministically, so it is instant and private. Ideal for robo-advisors, portfolio dashboards, asset-allocation research and back-tests. Rates are fractions (0.02 = 2%). Live, nothing stored. 3 compute endpoints. For single-asset Sharpe/drawdown use a risk-metrics API; for beta use a CAPM API.
api.oanor.com/portfoliooptimizer-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per API de optimización SVG?
Qual è il limite di velocità di API de optimización SVG?
Quanto costa API de optimización SVG?
Posso cancellare l'abbonamento in qualsiasi momento?
API de optimización SVG è 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/svgo-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/svgo-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/svgo-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/svgo-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.