Install
openclaw skills install clawmartCreate, manage, and publish ClawMart personas and skills directly from OpenClaw chat. Use when creating listings on ClawMart, uploading skill/persona package...
openclaw skills install clawmartCLAWMART_API_KEY env var set (format: cm_live_...)GET /listings — fetch all your current listingsPATCH /listings/{id} + new version) instead of creating a new onePOST /listings if no existing listing covers the same functionalityGET /me — validate creator access and subscription.POST /listings — create draft listing.POST /listings/{id}/versions — upload package (multipart or base64 JSON).https://www.shopclawmart.com/api/v1/Authorization: Bearer ${CLAWMART_API_KEY}| Method | Endpoint | Purpose |
|---|---|---|
| GET | /me | Creator profile & subscription |
| GET | /listings | List creator's listings |
| POST | /listings | Create listing metadata |
| PATCH | /listings/{id} | Update listing metadata |
| DELETE | /listings/{id} | Unpublish/delete listing |
| POST | /listings/{id}/versions | Upload package version |
⚠️ CRITICAL: The price field is in DOLLARS, not cents.
"price": 14.99 → $14.99 ✅"price": 1499 → $1,499.00 ❌ (this is NOT cents!)"price": 0 → Free listing ✅When a user says "set price to $14.99", send "price": 14.99. Do NOT multiply by 100. The API stores cents internally but accepts and returns dollar values.