Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/admetrics-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}