canonical: https://jentic.com/apis/swaggerhub.knyazev147/api

# Knyazev147 Интернет-магазин API

Интернет-магазин API. The API exposes 3 endpoints.

## For AI agents

Programmatically получить список товаров, получить информацию о товаре. Covers 3 operations.

## Scope

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

## Capabilities

- Получить список товаров
- Добавить товар в корзину
- Integrate Интернет-магазин API into automated workflows
- Query and filter Интернет-магазин API records by parameters
- Monitor Интернет-магазин API operational status and events

## Use cases

### Developer Tools Operations

Use the Интернет-магазин API to perform developer tools operations programmatically. The API provides 3 endpoints covering core functionality including получить список товаров, получить информацию о товаре, добавить товар в корзину.

Example prompt: Call GET /products to получить список товаров

### Automated cart Management

Automate cart operations by combining multiple Интернет-магазин API endpoints. Agents can получить информацию о товаре and then добавить товар в корзину in a single workflow.

Example prompt: 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.

Example prompt: Search Jentic for 'получить список товаров', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/products` | Получить список товаров |
| GET | `/products/{productId}` | Получить информацию о товаре |
| POST | `/cart/add` | Добавить товар в корзину |

## Key resources

- **cart** — Operations related to cart
- **products** — Operations related to products

## Why Jentic

- **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 handling:** 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.
- **Discovery method:** 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.

## Related APIs

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

## FAQ

### 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.
