Zum Inhalt springen
GET /v1/search

Find a ticker by company name

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/stocks-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 7,
        "query": "apple",
        "results": [
            {
                "name": "Apple Inc.",
                "type": "EQUITY",
                "symbol": "AAPL",
                "exchange": "NMS"
            },
            {
                "name": "Apple Hospitality REIT, Inc.",
                "type": "EQUITY",
                "symbol": "APLE",
                "exchange": "NYQ"
            },
            {
                "name": "Apple Inc.                    R",
                "type": "EQUITY",
                "symbol": "APC.DE",
                "exchange": "GER"
            },
            {
                "name": "APPLE INTERNATIONAL CO LTD",
                "type": "EQUITY",
                "symbol": "2788.T",
                "exchange": "JPX"
            },
            {
                "name": "HARVEST APPLE ENHNCD HIGH INCM ",
                "type": "ETF",
                "symbol": "APLE.TO",
                "exchange": "TOR"
            },
            {
                "name": "Apple International Co. Ltd.  R",
                "type": "EQUITY",
                "symbol": "D90.F",
                "exchange": "FRA"
            },
            {
                "name": "APPLE INC",
                "type": "EQUITY",
                "symbol": "AAPL.MX",
                "exchange": "MEX"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:23.592Z",
        "request_id": "1bc37d23-9ff4-494f-8ab1-e9f01352832b"
    },
    "status": "ok",
    "message": "Search results retrieved successfully",
    "success": true
}