Zum Inhalt springen
GET /v1/versions

Version history

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "id": "ms-python.python",
        "count": 50,
        "total": 83,
        "latest": "2026.4.0",
        "versions": [
            "2026.4.0",
            "2026.2.0",
            "2026.0.0",
            "2025.20.1",
            "2025.16.0",
            "2025.14.0",
            "2025.12.0",
            "2025.4.0",
            "2025.2.0",
            "2025.0.0",
            "2024.23.0-dev",
            "2024.22.1",
            "2024.22.0",
            "2024.20.0",
            "2024.18.1",
            "2024.18.0",
            "2024.16.1",
            "2024.16.0",
            "2024.14.1",
            "2024.12.3",
            "2024.12.2",
            "2024.12.1",
            "2024.10.0",
            "2024.8.1",
            "2024.4.1",
            "2024.2.1",
            "2024.2.0",
            "2024.0.1",
            "2024.0.0",
            "2023.22.1",
            "2023.20.0",
            "2023.18.0",
            "2023.16.0",
            "2023.14.0",
            "2023.12.0",
            "2023.10.1",
            "2023.10.0",
            "2023.8.0",
            "2023.6.1",
            "2023.6.0",
            "2023.4.1",
            "2023.4.0",
            "2023.2.0",
            "2022.20.2",
            "2022.20.1",
            "2022.20.0",
            "2022.18.2",
            "2022.16.1",
            "2022.16.0",
            "2022.14.0"
        ]
    },
    "meta": {
        "timestamp": "2026-05-31T14:32:05.090Z",
        "request_id": "727a051f-3406-43ec-ace3-b43f275c8e15"
    },
    "status": "ok",
    "message": "Versions retrieved",
    "success": true
}