← All disapproval codes
critical 13100

Error 13100 — Image link unreachable from Amazon's catalog crawler

What this means

Amazon's catalog ingestion crawler couldn't fetch the image URL even after multiple retries. The URL may be valid in a browser but blocked at the network level.

Why this happens

Common causes: (1) Cloudflare/AWS WAF blocking Amazon's crawler IP range, (2) the image is behind a login or referrer check, (3) the host returns 4xx for missing User-Agent or non-browser requests, or (4) DNS issues on the hosting domain.

How to fix it

  1. Test the image URL using `curl -I` from a server outside your network — if it works in your browser but fails via curl, you have a bot protection issue.
  2. Whitelist Amazon's crawler in your CDN/WAF rules (Amazon publishes IP ranges).
  3. Move images to a public CDN with no anti-bot protection: Amazon S3, Cloudfront, Imgix, or similar.
  4. Avoid requiring HTTP referrer checks on the image host — Amazon's crawler doesn't send referrers.

Common pitfalls