Parse front matter from Markdown
API · /frontmatter-api
Front Matter API
Read and write the front-matter metadata block at the top of Markdown and content files — the --- ... --- header used by Jekyll, Hugo, Astro, Eleventy, Gatsby, Next.js MDX and Obsidian. The parse endpoint splits a document into its structured front-matter data (title, tags, date, draft flags and anything else, as proper JSON), the body content and an optional excerpt, and tells you whether front matter was present. The stringify endpoint does the reverse: give it a JSON object of fields and a body, and it returns a clean Markdown file with a YAML front-matter block. Front matter is read as YAML (which also accepts JSON). Perfect for static-site build steps, headless-CMS imports, content migrations and validating posts. Pure local computation — no key, no third-party service, instant; send large documents via POST. Live, nothing stored. 3 endpoints. Distinct from Markdown rendering / table-of-contents extraction and from YAML/TOML format conversion.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 89 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 4,783
- attiva
- Chiamate totali
- 45
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 900 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 900 calls/month
- 2 req/sec
- Parse + stringify
- No credit card
Starter
€1.80 /mese
- 7,500 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 7.5k calls/month
- 8 req/sec
- Excerpt + nested YAML
- Email support
Pro
€20.40 /mese
- 132,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 132k llamadas/mes
- 20 req/seg
- Pipelines de sitios estáticos / CMS
- Soporte prioritario
Mega
€56.40 /mese
- 680,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 680k calls/month
- 50 req/sec
- Platform scale
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Table API
Преобразуйте данные в готовую к вставке таблицу. Передайте JSON — либо массив объектов (столбцы берутся из ключей), либо массив массивов (первая строка — заголовок) — или сырой CSV, и получите чистую таблицу в стиле GitHub Markdown или моноширинную ASCII-таблицу (с рамками) с автоматически подогнанными столбцами. Вывод Markdown поддерживает выравнивание столбцов по левому/центру/правому краю и экранирует вертикальные черты; парсер CSV соответствует RFC-4180 (поля в кавычках, встроенные запятые и новые строки). Идеально подходит для README и генерации документации, вывода CLI и логов, списков изменений, чат-ботов и комментариев к пул-реквестам. Чисто локальные вычисления — без ключа, без сторонних сервисов, мгновенно; отправляйте большие наборы данных через POST. Работает в реальном времени, ничего не хранится. 3 конечные точки. Отличается от парсинга/анализа CSV и от рендеринга Markdown.
api.oanor.com/table-api
HTML to Markdown API
Convert HTML into clean GitHub-Flavored Markdown. Pass an HTML string, or a live page URL to fetch and convert, and get back tidy Markdown — headings, bold/italic, links, images, lists, blockquotes, code blocks, plus GFM tables, strikethrough and task lists. Script, style and head elements are stripped automatically. Tune the output: ATX or setext headings, the bullet marker, fenced or indented code blocks, inline or referenced links, and the emphasis/strong delimiters; toggle GFM on or off. The inverse of a Markdown-to-HTML renderer. Pure local conversion (the optional URL fetch aside) — no key, no third-party service, instant. Live. 3 endpoints. Built for content migration, web clipping and "save as Markdown", scraping cleanup, CMS import and documentation pipelines.
api.oanor.com/htmltomarkdown-api
Markdown API
Un toolkit Markdown rápido y completamente local: renderiza Markdown al estilo GitHub a HTML que está sanitizado por defecto (se eliminan scripts, etiquetas style/iframe, manejadores de eventos en línea y URLs javascript:), convierte Markdown a texto plano limpio y extrae una tabla de contenidos de encabezados con niveles, texto y slugs de URL. Cada endpoint acepta entrada a través de la cadena de consulta o el cuerpo de la solicitud (hasta 1 MB). Cómputo puro del lado del servidor, sin terceros upstream, por lo que las respuestas son instantáneas y siempre están disponibles. Ideal para CMS y herramientas de documentación, sistemas de comentarios, pipelines de sitios estáticos y renderizado de contenido.
api.oanor.com/markdown-api
YAML API
Convert, validate and tidy YAML through a fast, fully-local API. Turn YAML into JSON (including multi-document streams) or JSON into clean YAML with optional key sorting and custom indentation, validate a document and get the exact line and column of any syntax error with a context snippet, or reformat and normalize existing YAML. Inputs can be sent as a raw text/plain body, a JSON field or a query parameter; outputs are tidy JSON. Pure server-side compute with no third-party upstream, so responses are instant and the service is always available. Ideal for DevOps and CI/CD, configuration and infrastructure-as-code tooling, no-code platforms, editors and data pipelines.
api.oanor.com/yaml-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Front Matter API?
Qual è il limite di velocità di Front Matter API?
Quanto costa Front Matter API?
Posso cancellare l'abbonamento in qualsiasi momento?
Front Matter 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/frontmatter-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/frontmatter-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/frontmatter-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/frontmatter-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.