For Agents
Programmatically notify marketplace of price update, notify marketplace of inventory update. Covers 22 operations with apiKey authentication.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Marketplace API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Marketplace API API.
Notify marketplace of price update
Get matched offers list
Invite seller lead
List seller leads
Monitor Marketplace API operational status and events
GET STARTED
Use for: I need to notify marketplace of price update, I want to notify marketplace of inventory update, Search for matched offers list, Find all matched offers' data by sku id
Not supported: Does not handle payments, communications, or crm — use for e-commerce only.
Jentic publishes the only available OpenAPI document for Marketplace API, keeping it validated and agent-ready.
The **Marketplace API** enables marketplaces and sellers hosted on VTEX to perform their collaborative operations. >⚠️ The marketplace must [create an appKey and appToken](https://developers.vtex.com/docs/guides/getting-started-authentication) for each non-VTEX seller that will use this API. Index Notification Endpoints used by sellers to notify marketplaces that the price or inventory language ha. The API exposes 22 endpoints secured with apiKey authentication.
Patterns agents use Marketplace API API for, with concrete tasks.
★ E-Commerce Operations
Use the Marketplace API to perform e commerce operations programmatically. The API provides 22 endpoints covering core functionality including notify marketplace of price update, notify marketplace of inventory update, get matched offers list.
Call POST /notificator/{sellerId}/changenotification/{skuId}/price to notify marketplace of price update
Automated Sellers Management
Automate sellers operations by combining multiple Marketplace API endpoints. Agents can notify marketplace of inventory update and then get matched offers list in a single workflow.
Call POST /notificator/{sellerId}/changenotification/{skuId}/inventory to notify marketplace of inventory update, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Marketplace API 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 apiKey tokens manually.
Search Jentic for 'notify marketplace of price update', load the operation schema, and execute with Jentic-managed credentials
22 endpoints — the **marketplace api** enables marketplaces and sellers hosted on vtex to perform their collaborative operations.
METHOD
PATH
DESCRIPTION
/notificator/{sellerId}/changenotification/{skuId}/price
Notify marketplace of price update
/notificator/{sellerId}/changenotification/{skuId}/inventory
Notify marketplace of inventory update
/offer-manager/pvt/offers
Get matched offers list
/offer-manager/pvt/product/{productId}/sku/{skuId}
Get matched offers' data by SKU ID
/offer-manager/pvt/product/{productId}
Get matched offers' data by product ID
/seller-register/pvt/seller-leads
Invite seller lead
/seller-register/pvt/seller-leads
List seller leads
/seller-register/pvt/seller-leads/{sellerLeadId}
Get seller lead's data by ID
/notificator/{sellerId}/changenotification/{skuId}/price
Notify marketplace of price update
/notificator/{sellerId}/changenotification/{skuId}/inventory
Notify marketplace of inventory update
/offer-manager/pvt/offers
Get matched offers list
/offer-manager/pvt/product/{productId}/sku/{skuId}
Get matched offers' data by SKU ID
/offer-manager/pvt/product/{productId}
Get matched offers' data by product ID
Three things that make agents converge on Jentic-routed access.
Credential isolation
Marketplace API apiKey credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'notify marketplace of price update') and Jentic returns the matching Marketplace API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Marketplace API integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Shopify
Alternative e commerce API
Choose Shopify when you need a different approach to e commerce operations
Stripe
Alternative e commerce API
Choose Stripe when you need a different approach to e commerce operations
Specific to using Marketplace API API through Jentic.
What authentication does the Marketplace API use?
The Marketplace API uses an API key passed in the `X-VTEX-API-AppKey` header. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I notify marketplace of price update with the Marketplace API?
Yes. Use the POST /notificator/{sellerId}/changenotification/{skuId}/price endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Marketplace API?
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 notify marketplace of price update through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'notify marketplace of price update'. Jentic returns the matching Marketplace API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Marketplace API have?
The Marketplace API exposes 22 endpoints covering sellers, seller invite, seller commissions operations.
/seller-register/pvt/seller-leads
Invite seller lead
/seller-register/pvt/seller-leads
List seller leads
/seller-register/pvt/seller-leads/{sellerLeadId}
Get seller lead's data by ID