Sign in to BlobHub
Open blobhub.io and sign in. You can use Google sign-in or continue anonymously if
you just want to poke around. Your personal profile is created automatically on first sign-in.
Create an Organization
Every Blob lives inside an Organization. From your profile, create a new Organization — give it a
short, URL-friendly alias (for example
acme). The alias becomes part of every Blob URL inside it.Create your first Blob
Inside your Organization, create a new Blob and choose its Blob Type. For this quickstart, pick
Workflow — it gives you something you can immediately execute. Give the Blob an alias (for example
hello-workflow).See Blob Types for the full list of available types.Edit the Draft Revision
Every Blob starts with a Draft Revision. Open the visual editor and drop in a couple of components
— for example a Flow Start, a Code block that returns a simple value, and a Flow End. Connect
them in order.The Draft stays mutable until you commit it, so feel free to iterate.
Commit and Snapshot the Revision
When you are happy with the Draft, commit it. Committing freezes the Revision’s content. Then
snapshot it to publish an addressable, immutable version of the Blob.See Concepts → Revisions for the full Draft →
Commit → Snapshot lifecycle.
Run your first Execution
Open the Workflow Blob’s playground, create a Session, and start an Execution. You should see
Execution Events stream in real time as components run.
If the Execution completes successfully, you have just exercised the entire BlobHub platform stack —
storage, versioning, execution, and real-time events.
(Optional) Call it from code
Once your Blob is snapshotted, you can drive the same loop programmatically. Install the Python SDK:Then use it (or the raw REST API) to create Sessions and Executions against
your Blob from your own application or notebook.
What You Just Built
This is the core loop for every Workflow Blob. Scheduler Blobs add time-based triggering on top of it, and ONNX Blobs swap the executable content for versioned model files — but the Organization → Blob → Revision shape stays the same everywhere.Next Steps
Concepts
Get the full mental model of Organizations, Blobs, Revisions, and related primitives.
Blob Types
Explore Workflow, Scheduler, and ONNX Blob Types in depth.
REST API Reference
Drive the same loop programmatically from any language.
Python SDK
Integrate BlobHub into Python applications and notebooks.

