Documentation Index
Fetch the complete documentation index at: https://docs.slideless.ai/llms.txt
Use this file to discover all available pages before exploring further.
You almost never call this directly —
slideless remix <slug> records the remix for you after downloading the files. Call it only when you build a custom remix flow on top of the public API.When to use
Bump the public remix count of a marketplace listing. The CLI’sslideless remix invokes this after it has written the listing’s files locally, so the counter reflects real remixes. The endpoint records a usage signal only — it does not perform or return any file content.
This endpoint is public — no API key required.
Endpoint
Auth
None. Do not send anAuthorization header.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
slug | string | yes | The listing that was remixed. |
Response (200)
| Field | Type | Description |
|---|---|---|
slug | string | The listing slug. |
remixCount | number | The new total after this remix. |
Examples
curl
Node.js
Errors
| Status | Code | Cause | Fix |
|---|---|---|---|
400 | invalid-argument | Missing slug in the body | Include slug |
404 | not-found | No listing with that slug | Check the slug via listMarketplaceListings |
405 | method-not-allowed | Used GET/PUT/etc. | Use POST |
500 | internal | Backend error | Retry with backoff |
Next
- GET /getMarketplaceListing — read the listing’s current counters.
- POST /recordMarketplaceView — the sibling endpoint for the view counter.
- GET /listMarketplaceRemixes — listings remixed from a given listing.
- Remixing guide — the full remix flow.