canonical: https://jentic.com/apis/rewixecommerce.com/rewixecommerce

# Rewixecommerce Rewix Dropshipping API

Rewix eCommerce platform API for dropshipping operations including product catalog, orders, and inventory management. The API exposes 8 endpoints secured with basic authentication.

## For AI agents

Programmatically list products, get product details. Covers 8 operations with basic authentication.

## Scope

Does not handle payments, communications, or crm - use for e-commerce only.

## Capabilities

- List products
- Get product details
- Create a dropship order
- Query and filter Rewix Dropshipping API records by parameters
- Monitor Rewix Dropshipping API operational status and events

## Use cases

### E-Commerce Operations

Use the Rewix Dropshipping API to perform e commerce operations programmatically. The API provides 8 endpoints covering core functionality including list products, get product details, get product availability.

Example prompt: Call GET /products to list products

### Automated Brands Management

Automate brands operations by combining multiple Rewix Dropshipping API endpoints. Agents can get product details and then get product availability in a single workflow.

Example prompt: Call GET `/products/{productId}` to get product details, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Rewix Dropshipping 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 basic tokens manually.

Example prompt: Search Jentic for 'list products', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | `/products` | List products |
| GET | `/products/{productId}` | Get product details |
| GET | `/products/{productId}/availability` | Get product availability |
| POST | `/orders` | Create a dropship order |
| GET | `/orders` | List orders |
| GET | `/orders/{orderId}` | Get order details |
| GET | `/categories` | List product categories |
| GET | `/brands` | List brands |

## Key resources

- **Brands** — Operations related to Brands
- **Categories** — Operations related to Categories
- **Orders** — Operations related to Orders
- **Products** — Operations related to Products

## AI readiness

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

- **Score:** 40 / 100
- **Maturity:** Non-Ready
- **Dimensions:**
  - Foundational Compliance: 87 / 100
  - Developer Experience & Jentic Compatibility: 63 / 100
  - AI-Readiness & Agent Experience: 45 / 100
  - Agent Usability: 94 / 100
  - Security: 10 / 100
  - AI Discoverability: 100 / 100
- **View full report:** https://jentic.com/apis/rewixecommerce.com/rewixecommerce/scorecard
- **How the score is calculated:** https://docs.jentic.com/reference/api-readiness-framework/overview/
- **More about the dimensions:** https://docs.jentic.com/reference/api-readiness-framework/specification/#dimensional-model-overview

### Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

- **Score your own API:** https://jentic.com/scorecard.md
- **Scoring CLI agent skill:** https://github.com/jentic/jentic-api-scorecard/blob/main/skills/jentic-api-scorecard/SKILL.md

```sh
npx @jentic/api-scorecard-cli score <openapi-url>
```

## Why Jentic

- **Setup:** Wiring the Rewix Dropshipping API by hand means handling its HTTP basic auth, encoding those credentials on every call to api.rewixecommerce.com, and managing retries yourself. Through Jentic you install once, import the Rewix Dropshipping API from the API Directory, store the credentials once, and your agent calls it.
- **Permission scoping:** Rewix puts the product id in the URL path (`/products/{productId}`), so a rule can pin your agent to one product: it can read that product and its availability and nothing else. You choose the operations it may call, so ones like placing orders are not included unless you add them.
- **Credential handling:** Your Rewix basic auth credentials 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 products' or 'check product availability', and Jentic returns the matching Rewix Dropshipping API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Shopify** — Alternative e commerce API
- **Stripe** — Alternative e commerce API

## FAQ

### What authentication does the Rewix Dropshipping API use?

The Rewix Dropshipping API uses HTTP Basic authentication with username and password. 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 list products with the Rewix Dropshipping 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 Rewix Dropshipping 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 list products through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'list products'. Jentic returns the matching Rewix Dropshipping API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Rewix Dropshipping API have?

The Rewix Dropshipping API exposes 8 endpoints covering brands, categories, orders operations.

### Can I limit what my agent is allowed to do with the Rewix Dropshipping API?

Yes. Because you run Jentic One yourself, your own rules decide which Rewix operations and credentials the agent may use. You can allow only reads like GET /products, GET `/products/{productId}`, and GET `/products/{productId}/availability`, and since the product id sits in the URL path you can pin the agent to a single product. Write operations such as POST /orders stay out of reach unless you explicitly add them.
