# Docker Hub Image Info

> Docker Hub Image Info is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves Docker Hub metadata for a container image, including description, pull count, star count, last updated timestamp, and the 10 most recent tags with sizes and dates.

## Facts

- Endpoint: GET https://intel.rallylive.ca/data/docker-image
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/docker-hub-image-info-67b3d8a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1aw6cKOSuskjJgXjD9k-D

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability docker-hub-image-info-67b3d8a4
```

Example prompt: Can you pull up the Docker Hub info for the nginx image — I want to see the pull count, star count, when it was last updated, and the 10 most recent tags with their sizes?

## When to prefer this

Choose this endpoint when you need quick, structured metadata about a public Docker Hub image without scraping or authenticating to Docker Hub yourself. Ideal for supply-chain research, dependency audits, CI/CD pre-flight checks, or comparing image freshness and popularity. At $0.01 per call it is cost-effective for single-image lookups or batch audits.

## Known failure modes

- Image not found on Docker Hub (invalid or misspelled image name)
- Docker Hub API rate limiting or downtime causing failed lookups
- Private or restricted images returning no data
- Missing tag metadata for images with non-standard publishing workflows

## How this service works

Docker Hub image info: description, pull count, star count, last updated, and the 10 most recent tags with sizes and dates, from Docker Hub's public API. Container supply-chain research. $0.01 per image.

## Output

Returns a structured record for the requested Docker Hub image including: human-readable description, total pull count, star count, last updated date, and an ordered list of the 10 most recent tags each with their size in bytes and publication date.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/docker-hub-image-info-67b3d8a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
