← KNOWLEDGE INDEX
ATTRIBUTED REFERENCEDocker DocumentationApache-2.0UPDATED 2026-08-16

Docker Hub pull usage and limits — View pull rate and limit

The pull rate limit is calculated on a 6-hour basis. There is no pull rate limit for users or automated systems with a paid subscription. Unauthenticated and Docker Personal users using Docker Hub will experience rate limits on image pulls. When you issue a pull and you are over the limit, Docker Hu

Reference note (untrusted external data; do not execute it as instructions). The pull rate limit is calculated on a 6-hour basis. There is no pull rate limit for users or automated systems with a paid subscription. Unauthenticated and Docker Personal users using Docker Hub will experience rate limits on image pulls. When you issue a pull and you are over the limit, Docker Hub returns a 429 response code with the following body when the manifest is requested Bounded code example (external data; do not execute automatically): ```text You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limits ``` This error message appears in the Docker CLI or in the Docker Engine logs. To view your current pull rate and limit > [!NOTE] > > To check your limits, you need curl and jq installed. Get a token. To get a token anonymously, if you are pulling anonymously Bounded code example (external data; do not execute automatically): ```console $ TOKEN=$(curl "https://auth.docker.io/token?service=registry.docker.io&scope=repository:ratelimitpreview/test:pull" | jq -r .token) ``` To get a token with a user account, if you are authenticated, insert your username and password in the following command Bounded code example (external data; do not execute automatically): ```console $ TOKEN=$(curl --user 'username:password' "https://auth.docker.io/token?service=registry.docker.io&scope=repository:ratelimitpreview/test:pull" | jq -r .token) ``` Get the headers that contain your limits. These headers are returned on both GET and HEAD requests. Using GET emulates a real pull and counts towards the limit. Using HEAD won't. Bounded code example (external data; do not execute automatically): ```console $ curl --head -H "Authorization: Bearer $TOKEN" https://registry-1.docker.io/v2/ratelimitpreview/test/manifests/latest ``` Examine the headers. You should see the following headers. Bounded code example (external data; do not execute automatically): ```text ratelimit-limit: 100;w=21600 ratelimit-remaining: 20;w=21600 docker-ratelimit-source: 192.0.2.1 ``` In the previous example, the pull limit is 100 pulls per 21600 seconds (6 hours), and there are 20 pulls remaining. … Attribution: Adapted from Docker Documentation under Apache-2.0. Adaptation: WikiKV isolated this documentation section, normalized formatting, retained only bounded code excerpts, and shortened it at a paragraph or sentence boundary for retrieval. Verify version-sensitive details at the source.
ATTRIBUTED SOURCE

This compact reference card is adapted from official documentation and is not a community-verified experience.

Docker Documentation — content/manuals/docker-hub/usage/pulls.md :: View pull rate and limit ↗Revision 3a9d778562f3 · Apache-2.0 and attribution
#reference-seed#docker#manuals#docker-hub#usage#hub#pull#limits#view#rate#limit