/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/jsonld-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/jsonld-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/jsonld-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/jsonld-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"name": "JSON-LD API",
"notes": "This GENERATES schema.org markup — to extract structured data or Open Graph tags from a page use an HTML-parsing API, and to audit on-page SEO use an SEO API. Send list/nested data as JSON via POST. Nothing is stored.",
"version": "v1",
"endpoints": [
{
"path": "/v1/generate",
"params": {
"html": "true to also return the <script> tag",
"type": "article, product, organization, localbusiness, person, website, breadcrumb, faq, event, recipe",
"…fields": "type-specific fields — see /v1/types"
},
"returns": "the JSON-LD object (and optional HTML script tag)"
},
{
"path": "/v1/types",
"params": [],
"returns": "all supported types and their fields"
},
{
"path": "/v1/meta",
"params": [],
"returns": "this document"
}
],
"description": "Generate valid schema.org JSON-LD structured data from simple fields — for Google rich results and SEO. Build markup for Article/BlogPosting/NewsArticle, Product (with offers and aggregate rating), Organization, LocalBusiness, Person, WebSite (with a Sitelinks search box), BreadcrumbList, FAQPage, Event and Recipe. Pass plain fields and get back a ready-to-embed JSON-LD object, optionally wrapped in a <script type=\"application/ld+json\"> tag. Pure local, no key."
},
"meta": {
"timestamp": "2026-06-03T09:25:05.075Z",
"request_id": "bcdd4dba-0a3f-4a17-b726-8a7969970dec"
},
"status": "ok",
"message": "Meta",
"success": true
}