Aller au contenu
GET /v1/tags

Image tags / versions

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/docker-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
…