INVALID_PRICE_FORMAT
How to fix an invalid product feed price
A product feed price needs a numeric amount followed by a three-letter ISO currency code, and it should match the product landing page.
Rule source reviewed September 3, 2026
Why it happens
- The value contains a currency symbol instead of a three-letter code.
- The amount and currency are joined without a space or use a comma decimal separator.
- The sale price uses a different currency or is not lower than the regular price.
How to fix it
- 1Remove currency symbols and thousands separators from the feed value.
- 2Add one space and the correct uppercase three-letter currency code.
- 3Confirm the same price and currency are visible on the product landing page.
Example
Before
price: $19.99After
price: 19.99 USD