Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Интернет-магазин 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.knyazev147%2Fapi" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fswaggerhub.knyazev147%2Fapi" | 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 Интернет-магазин API.
Получить список товаров
Добавить товар в корзину
Integrate Интернет-магазин API into automated workflows
Query and filter Интернет-магазин API records by parameters
GET STARTED
For Agents
Programmatically получить список товаров, получить информацию о товаре. Covers 3 operations.
Use for: I need to получить список товаров, I want to получить информацию о товаре, Search for добавить товар в корзину, List all records from Интернет-магазин API
Not supported: Does not handle payments, communications, or crm - use for developer tools only.
Интернет-магазин API. The API exposes 3 endpoints.
Monitor Интернет-магазин API operational status and events
Patterns agents use Интернет-магазин API for, with concrete tasks.
★ Developer Tools Operations
Use the Интернет-магазин API to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including получить список товаров, получить информацию о товаре, добавить товар в корзину.
Call GET /products to получить список товаров
Automated cart Management
Automate cart operations by combining multiple Интернет-магазин API endpoints. Agents can получить информацию о товаре and then добавить товар в корзину in a single workflow.
Call GET /products/{productId} to получить информацию о товаре, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Интернет-магазин 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 none tokens manually.
Search Jentic for 'получить список товаров', load the operation schema, and execute with Jentic-managed credentials
3 endpoints — интернет-магазин api.
METHOD
PATH
DESCRIPTION
/products
Получить список товаров
/products/{productId}
Получить информацию о товаре
/cart/add
Добавить товар в корзину
/products
Получить список товаров
/products/{productId}
Получить информацию о товаре
/cart/add
Добавить товар в корзину
What agents get from Jentic-routed access to this vendor.
Setup
Wiring this store API by hand means pointing your client at the SwaggerHub-hosted host and shaping its product and cart requests yourself. Through Jentic you install once, import the API from the API Directory, and your agent calls it without you hand-building each request.
Permission scoping
This API puts the product id in the URL path (/products/{productId}) while cart additions travel in the request body, so limit the agent to the operations it needs, such as listing products or reading one product. You choose the operations it may call, so adding to the cart is not included unless you add it.
Credential isolation
Any credentials for this API are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list store products' or 'add an item to the cart', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Specific to using Интернет-магазин API through Jentic.
What authentication does the Интернет-магазин API use?
The Интернет-магазин API 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 получить список товаров with the Интернет-магазин API?
Yes. Use the GET /products endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Интернет-магазин 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 получить список товаров through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'получить список товаров'. Jentic returns the matching Интернет-магазин API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Интернет-магазин API have?
The Интернет-магазин API exposes 3 endpoints covering cart, products operations.
Can I limit what my agent is allowed to do with the Online Store API?
Yes. Because Jentic One is self-hosted, your own rules decide which of this API's operations the agent may call, so you can allow read-only access with GET /products to list products and GET /products/{productId} to read a single product by its path id. The write operation, POST /cart/add, is only available to the agent if you explicitly include it, so adding items to the cart stays off unless you permit it. You control which operations and credentials the agent uses on your instance.