Skip to content
GET /v1/meta

Service metadata

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/analyst-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/analyst-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/analyst-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/analyst-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": "Look up a stock by its ticker (symbol=AAPL). The mean rating is the analyst consensus label; implied upside is the mean price target versus the last traded price. Targets and counts are numbers.",
        "source": "Nasdaq public analyst feed (api.nasdaq.com/api/analyst, live)",
        "service": "analyst-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/target": "Price target — low/mean/high, current price and implied upside (symbol=AAPL).",
            "GET /v1/history": "Consensus timeline — price target and buy/hold/sell over time (symbol=AAPL).",
            "GET /v1/consensus": "Analyst recommendation consensus — buy/hold/sell counts and mean rating (symbol=AAPL)."
        },
        "description": "Live Wall Street analyst coverage for US stocks from Nasdaq — the 'what do the analysts think' view. consensus = the recommendation picture (number of analysts rating it buy, hold and sell, total coverage and the mean rating from Strong Buy to Strong Sell); target = the analyst price target (low, mean and high targets, the current price and the implied upside to the mean target); history = the consensus timeline (price target and buy/hold/sell split over time). Live, no key, nothing stored. Distinct from the quote, movers, earnings and insider APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:27.670Z",
        "request_id": "deafe222-5adc-4eb4-84c1-1969f05c81e6"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}