VASTlint

VAST error codes / Wrapper errors

VAST error 301: Wrapper timeout / URI unreachable

Short answer: A wrapper's VASTAdTagURI timed out or could not be loaded.

What it means

The player followed a `<VASTAdTagURI>` and the next response did not arrive within the player's time budget.

Common causes

  • Missing or empty `<VASTAdTagURI>`
  • A slow or unreachable upstream ad server
  • A redirect that points at the wrong host or a dead endpoint
  • HTTP URI blocked on an HTTPS page

How to fix it

Confirm every wrapper has a non-empty, reachable HTTPS `<VASTAdTagURI>`, and measure each hop's latency in the inspector.

VAST error codes are runtime buckets emitted by the player. They tell you where the failure happened, not which line of XML caused it. Paste the raw tag into the validator to map this code onto the exact element and rule.

Related vastlint rules

Related error codes

Debug this tag now

Validate the XML, follow the wrapper chain, or check it in CI before launch:

# CLI: exits non-zero on errors, ideal for pipelines
vastlint check creative.xml

Use the right tool for this failure

If you already have the resolved XML, run a pure spec check. If you only have a live tag URL, test that endpoint first. If the failure happens in the wrapper chain, inspect each hop.

Further reading