canonical: https://jentic.com/apis/walmart.com/price-management

# Walmart Price Management

The price is a fundamental building block for your listing on Walmart.com. You can use the price management APIs to set up and manage the price for a given item. The API exposes 3 endpoints.

## For AI agents

Programmatically set up cap sku all, update bulk prices (multiple). Covers 3 operations.

## Scope

Does not handle payments, communications, or crm - use for developer tools only.

## Capabilities

- Set up CAP SKU All
- Update bulk prices (Multiple)
- Integrate Price Management into automated workflows
- Query and filter Price Management records by parameters
- Monitor Price Management operational status and events

## Use cases

### Developer Tools Operations

Use the Price Management to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including set up cap sku all, update bulk prices (multiple), update a price.

Example prompt: Call POST /v3/cppreference to set up cap sku all

### Automated Cppreference Management

Automate cppreference operations by combining multiple Price Management endpoints. Agents can update bulk prices (multiple) and then update a price in a single workflow.

Example prompt: Call POST /v3/feeds to update bulk prices (multiple), then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Price Management endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle none tokens manually.

Example prompt: Search Jentic for 'set up cap sku all', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /v3/cppreference | Set up CAP SKU All |
| POST | /v3/feeds | Update bulk prices (Multiple) |
| PUT | /v3/price | Update a price |

## Key resources

- **Cppreference** — Operations for cppreference
- **Feeds** — Operations for feeds
- **Price** — Operations for price

## Why Jentic

- **Setup:** Wiring Walmart Price Management by hand means choosing between the production marketplace.walmartapis.com host and the sandbox host and authenticating each request yourself. Through Jentic you install once, import Price Management from the API Directory, store your Walmart credential once, and your agent calls it.
- **Permission scoping:** Price Management carries its target in the request body rather than in fixed resource URL paths, so limit the agent to the operations it needs, such as setting a price, and leave others out of the allowed set unless you add them.
- **Credential handling:** Your Walmart credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'update the price for a SKU' or 'submit a price feed', and Jentic returns the matching Price Management operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### What authentication does the Price Management use?

The Price Management uses no authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I set up cap sku all with the Price Management?

Yes. Use the POST /v3/cppreference endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Price Management?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I set up cap sku all through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'set up cap sku all'. Jentic returns the matching Price Management operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Price Management have?

The Price Management exposes 3 endpoints covering cppreference, feeds, price operations.

### Can I limit what my agent is allowed to do with the Walmart Price Management API?

Yes. Because you run Jentic One yourself, your own rules decide which Price Management operations your agent may call and which credential it uses. Since this API carries its target in the request body rather than in fixed URL paths, you scope by operation: allow only what the agent needs, such as updating a price with PUT /v3/price, and leave out submitting bulk price feeds with POST /v3/feeds or setting up CAP SKU All with POST /v3/cppreference unless you add them to the allowed set. Anything outside that set stays off limits to the agent.
