Goal
Pick the right SpeckleSharp API for loading model data from Speckle Server and publishing results back.What you will learn
When to useReceive2/Send2 (recommended for scripts), Send/Receive with transports, or SendPipeline (connectors only).
When to use this
Before reading Operations method signatures — or when you are unsure which send/receive path fits your workflow.Recommended approach
For AEC automation scripts, notebooks, and Grasshopper C#: useReceive2/Send2 (Path C) after the one-time bootstrap. No transport factory required.
Avoid SendPipeline unless you are building a desktop connector that uploads an entire host-application model.
The paths at a glance
Path A: Serialize only
Example
Path B: Send / Receive with a transport
The classic path used in the Full send/receive tour:Example
ServerTransport for MemoryTransport or SQLiteTransport for local-only workflows.
Path C: Receive2 / Send2 (recommended)
The simplest path for most AEC automation scripts — direct URL, project id, and token:Example
The
streamId parameter name in these signatures refers to the project id.Path D: SerializeNew
Experimental — avoid for production workflows.Path E: SendPipeline (connectors only)
Avoid this unless you are building a connector. For uploading large host-application models, connectors useSendPipeline and client.Ingestion:
Example
Version.Create on this pathway.
Decision guide
I'm loading or analysing an existing published model
I'm loading or analysing an existing published model
Use Path C —
Receive2 after Build your first model analysis
tool.I'm writing a script or Grasshopper C# component
I'm writing a script or Grasshopper C# component
Use Path C (
Send2/Receive2) — see Automate with
scripts.I want to understand transports step by step
I want to understand transports step by step
Use Path B — Full send/receive tour.
I'm building a desktop connector
I'm building a desktop connector
Use Path E — Publish large models
(connectors).
Next steps
Build your first model analysis tool
Load and analyse with Receive2
Send analysis results back
Publish with Send2
Operations API
Full method signatures