Skip to main content
A share link is a durable, guest-facing URL backed by a render. Unlike the raw downloadUrl, a share can carry an optional expiry, be revoked, and is the right artifact to return to an end-user for a record they will revisit. Your project ck_live_ key can create shares.

Create a share

POST /v1/renders/:id/shares. The render must have succeeded first (otherwise 409 not_ready).
Omit expiresAt for a link with no auto-expiry. If your project has a custom share domain configured, shareUrl uses it.

List and revoke

  • GET /v1/renders/:id/shares lists all shares for a render (revoked included).
  • DELETE /v1/renders/:id/shares/:shareId revokes a share (sets revokedAt); the link stops resolving immediately.
For an offline-first record that crews revisit, return the shareUrl (durable, revokable) rather than the raw downloadUrl. You can always re-fetch the render itself later with GET /v1/renders/:id.