# Google Merchant Feed Audit – GTIN & Feed Errors

**Use case:** 

Audit Google Merchant XML, CSV, or TSV feeds for invalid GTINs, missing fields, prices, URLs, availability, and 2026 video-link errors.

## Input

```json
{
  "feedContent": "id,title,description,link,image_link,price,availability,condition,brand,gtin,video_link\nsku-100,Trail Bottle,Insulated stainless bottle,https://example.com/products/trail-bottle,https://example.com/images/trail-bottle.jpg,29.99 USD,in_stock,new,Example Outfitters,4006381333931,https://example.com/videos/trail-bottle.mp4\nsku-101,Camp Mug,Enamel camp mug,https://example.com/products/camp-mug,https://example.com/images/camp-mug.jpg,$18,available,new,Example Outfitters,12345,",
  "format": "csv",
  "maxProducts": 1000,
  "fetchTimeoutSecs": 30
}
```

## Output

```json
{
  "row": {
    "label": "Feed row",
    "format": "integer"
  },
  "id": {
    "label": "Product ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "error_count": {
    "label": "Errors",
    "format": "integer"
  },
  "warning_count": {
    "label": "Warnings",
    "format": "integer"
  },
  "issue_codes": {
    "label": "Issue codes",
    "format": "array"
  },
  "valid_gtins": {
    "label": "Valid GTINs",
    "format": "integer"
  },
  "audited_at": {
    "label": "Audited at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Merchant Feed Validator & GTIN Checker](https://apify.com/bene123/google-merchant-feed-auditor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bene123/google-merchant-feed-auditor) to learn more, explore other use cases, and run it yourself.