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.
For most use cases, the
slideless CLI is easier than calling this endpoint directly. slideless listing get <slug> already shows a listing’s descendants under “Remixes of this”.When to use
Fetch every listing that descends from a given marketplace listing — the listings published from decks that were created by remixing it. This powers the “Remixes of this” section on a listing’s marketplace page. Only descendants that have themselves been published appear here. Remixing a listing alone does not create one — the remixed deck must be pushed and then published before it shows up. See Remix lineage. This endpoint is public — no API key — and its responses are cached.Endpoint
Auth
None. Do not send anAuthorization header.
Query parameters
| Param | Type | Description |
|---|---|---|
slug | string | The source listing whose descendants to list. Required. |
Response (200)
| Field | Type | Description |
|---|---|---|
slug | string | The source listing the query was made for. |
remixes | array | Public descendant listings. Each entry is a MarketplacePublicListing — the same shape returned by GET /listMarketplaceListings, including remixedFromSlug / remixedFromTitle pointing back at the source. |
remixes is [] when nothing has been published from a remix of this listing.
Examples
curl
Node.js
Errors
| Status | Code | Cause | Fix |
|---|---|---|---|
400 | invalid-argument | Missing slug query parameter | Append ?slug=… |
404 | not-found | No listing with that slug | Check the slug via listMarketplaceListings |
405 | method-not-allowed | Used POST/PUT/etc. | Use GET |
500 | internal | Backend error | Retry with backoff |
Next
- GET /getMarketplaceListing — full detail for the source listing, including its own
remixedFromSlug. - Remixing guide — how lineage flows from remix to publish.