Automation

CLI Status

The homepage shows the intended CLI direction, but there is no shipped dlvr.sh CLI package today. Use the REST API directly until the CLI exists.

Status

The current product ships the web UI, the public share page, and the REST API. It does not yet ship a supported command-line client or SDK package.

Use the API instead

If you need automation today, treat the REST API as the canonical interface. The web UI is built on the same service behavior.

Automation today

For smaller files, a single multipart request is enough. For larger files, use the documented direct upload flow in the API reference.

Current automation path

curl -X POST https://dlvr.sh/api/upload \
  -F "file=@./artifact.zip" \
  -F "duration=24h"

Continue to the REST API docs for full endpoint reference and large-file examples.