⚠️ Change price
items_update_priceUpdate the price of an eligible listing on Avito. The new price is immediately visible to buyers. Works for Goods, Spare Parts, Auto, and Real Estate categories.
Instructions
Changes a listing's price (update_price). ⚠️ PUBLIC: the new price is immediately visible to buyers on the site. Requires item_id and price (integer, in rubles). Available only for the Goods, Spare Parts, Auto and Real Estate categories (except short-term rentals); other categories return an error. Spends no money, but this is a live change to a public listing — confirm with the user. Limit: 150 requests/min.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item_id | Yes | ID of the listing whose price needs to be changed. | |
| price | Yes | New price in rubles, an integer (>= 0). Becomes visible to buyers immediately. | |
| dryRun | No | v0.7.0: if true — returns a preview of the HTTP request without calling the Avito API. Safe for inspecting exactly what would be done. Default: the value of AVITO_MCP_DRY_RUN_DEFAULT (usually false). | |
| idempotencyKey | No | v0.7.0: optional key for duplicate protection. A repeat call with the same key within AVITO_MCP_IDEMPOTENCY_TTL_SEC returns the cached result. The same key with different args returns a conflict error — this is safe by design. |