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

# Prodigi Print API

Prodigi print-on-demand API. Create and manage orders for printed products including photos, wall art, phone cases, apparel, and more. Products are produced and shipped globally. The API exposes 11 endpoints secured with apiKey authentication.

## For AI agents

Programmatically create order, get orders. Covers 11 operations with apiKey authentication.

## Scope

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

## Capabilities

- Create order
- Get orders
- Cancel an order
- Update order shipping method

## Use cases

### E-Commerce Operations

Use the Prodigi Print API to perform e commerce operations programmatically. The API provides 11 endpoints covering core functionality including create order, get orders, get order by id.

Example prompt: Call POST /Orders to create order

### Automated Order Actions Management

Automate order actions operations by combining multiple Prodigi Print API endpoints. Agents can get orders and then get order by id in a single workflow.

Example prompt: Call GET /Orders to get orders, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Prodigi Print 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.

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

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/Orders` | Create order |
| GET | `/Orders` | Get orders |
| GET | `/Orders/{orderId}` | Get order by ID |
| POST | `/Orders/{orderId}/actions/cancel` | Cancel an order |
| POST | `/Orders/{orderId}/actions/updateShipping` | Update order shipping method |
| POST | `/Orders/{orderId}/actions/updateRecipient` | Update order recipient |
| POST | `/Orders/{orderId}/actions/updateMetaData` | Update order metadata |
| POST | `/Quotes` | Get a price quote |

## Key resources

- **Order Actions** — Operations related to Order Actions
- **Orders** — Operations related to Orders
- **Products** — Operations related to Products
- **Quotes** — Operations related to Quotes
- **Shipping** — Operations related to Shipping

## Why Jentic

- **Setup:** Wiring the Prodigi Print API by hand means setting its API key, targeting api.prodigi.com/v4.0, and mapping orders, quotes, and order actions yourself. Through Jentic you install once, import Prodigi from the API Directory, store the key once, and your agent calls it.
- **Permission scoping:** Prodigi puts the order id in the URL path (`/Orders/{orderId}/actions/...`), so a rule can pin your agent to specific orders. You choose the operations it may call, so an action like cancelling an order is not included unless you add it.
- **Credential handling:** Your Prodigi API key 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 'create a print order' or 'get a fulfillment quote', and Jentic returns the matching Prodigi 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 Prodigi Print API use?

The Prodigi Print API uses an API key passed in the `X-API-Key` header. 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 create order with the Prodigi Print API?

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

### What are the rate limits for the Prodigi Print 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 create order through Jentic?

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

### How many endpoints does the Prodigi Print API have?

The Prodigi Print API exposes 11 endpoints covering order actions, orders, products operations.

### Can I limit what my agent is allowed to do with the Prodigi Print API?

Yes. Jentic One is self-hosted, so your own rules decide which Prodigi operations and credentials the agent may use. You pick the exact operations it can call, so it can create orders, list orders, and fetch quotes while an action like cancelling an order stays off unless you add it. Because Prodigi puts the order id in the URL path (`/Orders/{orderId}/actions/...`), a rule can also pin the agent to specific orders.
