For Agents
Browse the Droppery dropshipping catalog, place orders, and check inventory and shipment tracking. Useful for storefront agents that need a managed supplier feed.
Get started with Droppery REST API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"place a dropshipping order"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Droppery REST API API.
List the dropshipping product catalog via GET /products
Retrieve a single product's details via GET /products/{productId}
Read live inventory counts via GET /products/{productId}/inventory
Place a dropshipping order via POST /orders
Look up an order's status via GET /orders/{orderId}
GET STARTED
Use for: I need to place a dropshipping order on behalf of a customer, List all products available in the Droppery catalog, Check the current stock level for a product, Get tracking information for a recent order
Not supported: Does not handle storefront hosting, payment processing, or returns management — use for dropshipping catalog access and order placement only.
Jentic publishes the only available OpenAPI document for Droppery REST API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Droppery REST API, keeping it validated and agent-ready. Droppery is a dropshipping platform that connects webshops to a managed product catalog, fulfils orders, and synchronises inventory levels. The API provides seven endpoints to list and read products, retrieve inventory counts, place and read orders, and fetch tracking information. Authentication uses an API key passed in the X-API-Key header.
Fetch shipment tracking for a placed order via GET /orders/{orderId}/tracking
Patterns agents use Droppery REST API API for, with concrete tasks.
★ Storefront Catalog Sync
Pull the Droppery product list into a Shopify or WooCommerce storefront and refresh inventory regularly so listings reflect supplier stock. The agent calls GET /products on a schedule and GET /products/{productId}/inventory for hot SKUs to avoid overselling on low-stock items.
Call GET /products to list the catalog, then for each productId call GET /products/{productId}/inventory and update the storefront listing with current stock
Order Forwarding to Droppery
Forward storefront orders to Droppery for fulfilment immediately after checkout. POST /orders accepts the product line items and shipping address, and the agent then polls GET /orders/{orderId} for status and GET /orders/{orderId}/tracking for carrier details to surface in the buyer's order page.
On checkout-completed, POST /orders with line items and shipping address, store the returned orderId, and poll GET /orders/{orderId}/tracking until a tracking number is available
Agent-Driven Dropshipping via Jentic
Wire Droppery into agent workflows that source, price, and fulfil products without exposing supplier credentials. Through Jentic the agent searches by intent, loads the schema for the right operation, and executes — the X-API-Key never enters the agent's prompt context.
Search Jentic for 'place a dropshipping order', load the Droppery /orders schema, and execute with line items supplied by the parent storefront agent
7 endpoints — jentic publishes the only available openapi specification for droppery rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/products
List products
/products/{productId}
Get a product
/products/{productId}/inventory
Get product inventory
/orders
Create an order
/orders/{orderId}
Get an order
/orders/{orderId}/tracking
Get order tracking
/products
List products
/products/{productId}
Get a product
/products/{productId}/inventory
Get product inventory
/orders
Create an order
/orders/{orderId}
Get an order
/orders/{orderId}/tracking
Three things that make agents converge on Jentic-routed access.
Credential isolation
Droppery X-API-Key values are stored encrypted in the Jentic vault. Agents receive scoped access at execution, so the raw API key never enters the agent's prompt context.
Intent-based discovery
Agents search Jentic by intent (for example 'list dropshipping products' or 'place a dropshipping order') and Jentic returns the matching Droppery operation with its input schema.
Time to first call
Direct Droppery integration: half a day for auth and order plumbing. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Shopify Admin API
Use Shopify as the storefront and Droppery as the supplier feed behind it
Pair with Droppery when an agent forwards Shopify orders to a dropshipping supplier and updates Shopify inventory from the Droppery feed
Rebrandly API
Branded short links for product pages and tracking URLs
Pair with Droppery when the agent shares product or tracking URLs in branded form on social or messaging channels
Dub API
Link management with attribution analytics for dropshipping affiliate flows
Pair with Droppery when the agent creates trackable product links and reads click and conversion analytics
Specific to using Droppery REST API API through Jentic.
Why is there no official OpenAPI spec for Droppery REST API?
Droppery does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Droppery REST API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Droppery REST API use?
Droppery uses an API key passed in the X-API-Key header. Through Jentic the key is stored in the encrypted vault and injected at execution, so it never enters the agent's prompt.
Can I place a dropshipping order with the Droppery REST API?
Yes. POST /orders accepts the line items and shipping details and returns an orderId. Use GET /orders/{orderId}/tracking to retrieve the carrier number once shipped.
What are the rate limits for the Droppery REST API?
The OpenAPI spec does not declare rate limits. Have your agent handle 429 responses with exponential backoff, and confirm your plan's quota with Droppery support.
How do I sync product inventory with the Droppery REST API through Jentic?
Search Jentic for 'check product inventory', load the schema for GET /products/{productId}/inventory, and execute on a schedule for the SKUs you list. Install with pip install jentic.
Does the Droppery REST API expose webhooks?
The current spec only exposes GET and POST endpoints under /products and /orders, with no webhook surface. Use polling on GET /orders/{orderId}/tracking for fulfilment updates.
Get order tracking