# Compare supplier prices and flag SKU cost changes

**Use case:** 

Compare two small fictional CSV price lists. See matched SKUs, proposed cost updates and exceptions in downloadable review reports, with an aggregate summary table. Replace the sample files with your own catalog and supplier list. Detailed reports and run outputs remain private.

## Input

```json
{
  "catalogFile": "https://api.apify.com/v2/key-value-stores/HlByU79W7bjNJbfnw/records/catalog.csv",
  "supplierFile": "https://api.apify.com/v2/key-value-stores/HlByU79W7bjNJbfnw/records/supplier.csv",
  "catalogTaxBasis": "unknown",
  "supplierTaxBasis": "unknown",
  "retailTaxBasis": "unknown",
  "catalogCostsPerUnit": false,
  "approvedMappings": {},
  "caseInsensitive": false,
  "trimWhitespace": true,
  "marginThreshold": "20",
  "changeThreshold": "10",
  "configuration": {
    "schema_version": "1.0",
    "catalog": {
      "sku": "SKU",
      "cost": "Cost",
      "retail": "Retail",
      "identifier": "Variant ID",
      "currency_column": "Currency",
      "tax_basis": "exclusive",
      "unit_basis": "unit"
    },
    "supplier": {
      "sku": "Supplier SKU",
      "cost": "Wholesale Cost",
      "currency_column": "Currency",
      "tax_basis": "exclusive",
      "unit_basis": "unit"
    },
    "supplier_price_basis": "unit_cost",
    "retail_tax_basis": "exclusive",
    "retail_currency": "USD",
    "mappings": {
      "SUP-MUG": "MUG-03"
    },
    "margin_threshold": "20",
    "change_threshold": "10"
  }
}
```

## Output

```json
{
  "catalog_rows": {
    "label": "Catalog rows",
    "format": "number"
  },
  "supplier_rows": {
    "label": "Supplier rows",
    "format": "number"
  },
  "proposed_updates": {
    "label": "Proposed updates",
    "format": "number"
  },
  "records_with_exceptions": {
    "label": "Records to review",
    "format": "number"
  },
  "status_counts": {
    "label": "Results by status",
    "format": "object"
  },
  "message": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Supplier Price List Comparison — Excel & CSV SKU Reconciler](https://apify.com/exceptional_nugget/supplier-price-list-reconciler.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/exceptional_nugget/supplier-price-list-reconciler.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/exceptional_nugget/supplier-price-list-reconciler.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
