Zum Inhalt springen
GET /v1/tags

Image tags / versions

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "tags": [
            {
                "name": "trixie",
                "size": 54269113,
                "digest": "sha256:aa049e689e141a4358ad1d4562dc49c88a89fbab711fd8fcc33f684c80b26301",
                "platforms": [
                    "linux/386",
                    "linux/ppc64le",
                    "linux/amd64",
                    "linux/arm/v5",
                    "linux/arm/v7",
                    "linux/arm64/v8",
                    "linux/riscv64",
                    "linux/s390x"
                ],
                "last_updated": "2026-05-28T21:06:02.626978Z"
            },
            {
                "name": "latest",
                "size": 54269113,
                "digest": "sha256:aa049e689e141a4358ad1d4562dc49c88a89fbab711fd8fcc33f684c80b26301",
                "platforms": [
                    "linux/s390x",
                    "linux/amd64",
                    "linux/arm/v5",
                    "linux/arm/v7",
                    "linux/arm64/v8",
                    "linux/386",
                    "linux/ppc64le",
                    "linux/riscv64"
                ],
                "last_updated": "2026-05-28T21:05:59.672296Z"
            },
            {
                "name": "8.8.0-trixie",
                "size": 54269113,
                "digest": "sha256:aa049e689e141a4358ad1d4562dc49c88a89fbab711fd8fcc33f684c80b26301",
                "platforms": [
                    "linux/amd64",
                    "linux/arm/v5",
                    "linux/arm/v7",
                    "linux/arm64/v8",
                    "linux/386",
                    "linux/ppc64le",
                    "linux/riscv64",
                    "linux/s390x"
                ],
                "last_updated": "2026-05-28T21:05:54.136287Z"
            },
            {
                "name": "8.8.0",
                "size": 54269113,
                "digest": "sha256:aa049e689e141a4358ad1d4562dc49c88a89fbab711fd8fcc33f684c80b26301",
                "platforms": [
                    "linux/amd64",
                    "linux/arm/v5",
                    "linux/arm/v7",
                    "linux/arm64/v8",
                    "linux/386",
                    "linux/ppc64le",
                    "linux/riscv64",
                    "linux/s390x"
                ],
                "last_updated": "2026-05-28T21:05:48.225695Z"
            },
            {
                "name": "8.8-trixie",
                "size": 54269113,
                "digest": "sha256:aa049e689e141a4358ad1d4562dc49c88a89fbab711fd8fcc33f684c80b26301",
                "platforms": [
                    "linux/amd64",
                    "linux/arm/v5",
                    "linux/arm/v7",
                    "linux/arm64/v8",
                    "linux/386",
                    "linux/ppc64le",
                    "linux/riscv64",
                    "linux/s390x"
                ],
                "last_updated": "2026-05-28T21:05:45.1
…