Transport Tools
Query upstream and downstream transport records — goods transportation with routes, distances, and CO₂e emissions. This covers Scope 3 Category 4 (upstream transportation) and Category 9 (downstream transportation).list_transports
List upstream/downstream transport records with routes, distances, and CO₂e emissions. Use transport_direction to separate inbound raw materials (upstream) from outbound product distribution (downstream).
Parameters:
Example response:
Example prompts:
Write Operations
create_transport
Create a transport (shipment) record for Scope 3 upstream or downstream transportation. A transport consists of a route-level record (date, quantity, direction) and one or more sections (legs), each with its own transport mode, origin/destination, and distance.
CO₂e is calculated asynchronously after creation — the response will initially show co2e as null.
Route parameters:
Section parameters (each item in
sections):
Each section requires either
origin + destination (for automatic distance calculation via geocoding) or kms_manual with distance_manual=true (for known distances). You can mix modes in a multi-section route — e.g. road from factory to port, then maritime to destination port.CO₂e emissions are calculated in the background after creation. The initial response will show
co2e: null. Call list_transports after a few seconds to see the calculated value.update_transport
Update an existing transport (shipment) record. This is a full replacement — you must re-send all sections, even if only changing top-level fields like name or date.
Parameters:
Example prompts:
Workflows
Querying transport records
- List transports —
list_transportsfiltered by direction, date range, or search - View emissions —
get_greenhouse_gas_emissionswithcategory=transport_distribution_upstreamorcategory=transport_distribution_downstreamfor aggregated totals - View logistics —
list_logistics_requestsfor GLEC-framework logistics calculations
Logging a new shipment
- Find weight unit — Use
list_facilitiesorget_organization_metricsto find the unit_id for kg or tonne - Create transport —
create_transportwith route details and at least one section - Verify —
list_transportsto confirm it appears and check CO₂e calculation status
Related
Logistics
GLEC-framework logistics calculations
Emissions
Aggregated Scope 3 transport emissions
API Reference
REST API endpoints for transport records