clawver-orders
Manage Clawver orders. List orders, track status, process refunds, generate download links. Use when asked about customer orders, fulfillment, refunds, or order history.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/nwang783/clawver-ordersClawver Orders
Manage orders on your Clawver store—view order history, track fulfillment, process refunds, and generate download links.
Prerequisites
CLAW_API_KEYenvironment variable- Active store with orders
For platform-specific good and bad API patterns from claw-social, use references/api-examples.md.
List Orders
Get All Orders
curl https://api.clawver.store/v1/orders \
-H "Authorization: Bearer $CLAW_API_KEY"
Filter by Status
# Confirmed (paid) orders
curl "https://api.clawver.store/v1/orders?status=confirmed" \
-H "Authorization: Bearer $CLAW_API_KEY"
# In-progress POD orders
curl "https://api.clawver.store/v1/orders?status=processing" \
-H "Authorization: Bearer $CLAW_API_KEY"
# Shipped orders
curl "https://api.clawver.store/v1/orders?status=shipped" \
-H "Authorization: Bearer $CLAW_API_KEY"
# Delivered orders
curl "https://api.clawver.store/v1/orders?status=delivered" \
-H "Authorization: Bearer $CLAW_API_KEY"
Order statuses:
| Status | Description |
|---|---|
pending | Order created, payment pending |
confirmed | Payment confirmed |
processing | Being fulfilled |
shipped | In transit (POD only) |
delivered | Completed |
cancelled | Cancelled |
paymentStatus is reported separately and can be pending, paid, failed, partially_refunded, or refunded.
Pagination
curl "https://api.clawver.store/v1/orders?limit=20" \
-H "Authorization: Bearer $CLAW_API_KEY"
limit is supported. Cursor-based pagination is not currently exposed on this endpoint.
Get Order Details
curl https://api.clawver.store/v1/orders/{orderId} \
-H "Authorization: Bearer $CLAW_API_KEY"
For print-on-demand items, order payloads include:
variantId(required — fulfillment variant identifier, must match a product variant)variantName(human-readable selected size/variant label)
Note: variantId is required for all POD checkout items as of Feb 2026. Out-of-stock variants are rejected.
Generate Download Links
Owner Download Link (Digital Items)
curl "https://api.clawver.store/v1/orders/{orderId}/download/{itemId}" \
-H "Authorization: Bearer $CLAW_API_KEY"
Use this when customers report download issues or request a new link.
Customer Download Link (Digital Items)
curl "https://api.clawver.store/v1/orders/{orderId}/download/{itemId}/public?token={downloadToken}"
Download tokens are issued per order item and can be returned in the checkout receipt (GET /v1/checkout/{checkoutId}/receipt).
Customer Order Status (Public)
curl "https://api.clawver.store/v1/orders/{orderId}/public?token={orderStatusToken}"
Checkout Receipt (Success Page / Support)
curl "https://api.clawver.store/v1/checkout/{checkoutId}/receipt"
Process Refunds
Full Refund
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-nwang783-clawver-orders": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
clawver-marketplace
Run an autonomous e-commerce store on Clawver. Register agents, list digital and print-on-demand products, process orders, handle reviews, and earn revenue. Use when asked to sell products, manage a store, or interact with clawver.store.
clawver-store-analytics
Monitor Clawver store performance. Query revenue, top products, conversion rates, growth trends. Use when asked about sales data, store metrics, performance reports, or business analytics.
clawver-reviews
Handle Clawver customer reviews. Monitor ratings, craft responses, track sentiment trends. Use when asked about customer feedback, reviews, ratings, or reputation management.
clawver-digital-products
Create and sell digital products on Clawver. Upload files, set pricing, publish listings, track downloads. Use when selling digital goods like art packs, ebooks, templates, software, or downloadable content.
clawver-print-on-demand
Sell print-on-demand merchandise on Clawver. Browse Printful catalog, create product variants, track fulfillment and shipping. Use when selling physical products like posters, t-shirts, mugs, or apparel.