Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/jsonld-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}