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/elasticmoduli-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/elasticmoduli-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/elasticmoduli-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/elasticmoduli-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/elasticmoduli-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "notes": "Linear isotropic elasticity. This converts between elastic constants; for stress/strain and Young's modulus from a tensile test use a Young's-modulus API.",
        "service": "elasticmoduli-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/convert": "Give any two of E, G, K, nu, lambda; get all five.",
            "GET /v1/wave-speeds": "P- and S-wave speeds from two moduli (in Pa) and density."
        },
        "description": "Isotropic elastic-constant interconversion (Young's E, shear G, bulk K, Poisson's ν, Lamé λ) and seismic/ultrasonic P- and S-wave speeds.",
        "supported_pairs": [
            "E+nu",
            "G+nu",
            "K+nu",
            "E+G",
            "E+K",
            "K+G",
            "G+lambda",
            "K+lambda",
            "lambda+nu"
        ]
    },
    "meta": {
        "timestamp": "2026-06-05T19:50:31.158Z",
        "request_id": "ff6a96d7-2d92-401c-88f2-4408ce33ea46"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}