/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/admetrics-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/admetrics-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/admetrics-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/admetrics-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Currency-agnostic. Rates such as conversion_rate and ctr are fractions (0.05 = 5%).",
"service": "admetrics",
"endpoints": {
"/v1/roas": "ROAS, ROI, profit and (with a margin) break-even ROAS and gross profit.",
"/v1/funnel": "Compute CTR, CPC, CPM, conversion rate, CPA, ROAS and ROI from impressions/clicks/conversions/spend/revenue.",
"/v1/target": "Reverse-plan required clicks, impressions and budget from a conversion or revenue goal."
},
"description": "Marketing/advertising metrics: funnel rates (CTR/CPC/CPM/CVR/CPA/ROAS/ROI), profitability and campaign planning."
},
"meta": {
"timestamp": "2026-06-03T17:41:58.121Z",
"request_id": "2ad3b41f-8854-4d45-8ee0-17683335ef1e"
},
"status": "ok",
"message": "Meta",
"success": true
}