> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.quivo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get transport

> Get transport record by its ID.



## OpenAPI

````yaml /openapi.json get /transports/{transportId}
openapi: 3.0.1
info:
  title: Connector
  version: 80f7edc, 2026-01-23T12:01:00Z
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: bundles
    description: Manage product bundles
  - name: carriers
    description: Get carrier information
  - name: contacts
    description: Manage contact information
  - name: countries
    description: Get country information
  - name: currencies
    description: Get currency information
  - name: customerInquiries
    description: Manage customer inquiries
  - name: dashboards
    description: Access dashboard data
  - name: files
    description: Manage file uploads and downloads
  - name: fulfillmentPlans
    description: Manage fulfillment plans
  - name: inbounds
    description: Manage inbound shipments
  - name: items
    description: Monitor and manage inventory items
  - name: languages
    description: Get language information
  - name: notifications
    description: Manage notifications
  - name: orders
    description: Create and manage fulfillment orders
  - name: ping
    description: Health check endpoint
  - name: returnApp
    description: Manage return applications
  - name: returnLinks
    description: Manage return links
  - name: returns
    description: Manage returns
  - name: sellers
    description: Get seller information
  - name: shipments
    description: Book and manage shipments
  - name: shippingServiceGroups
    description: Get shipping service groups
  - name: shopOrders
    description: Manage shop orders
  - name: shops
    description: Manage shops
  - name: status
    description: Get system status
  - name: storedAddresses
    description: Manage stored addresses
  - name: subscriptionPackages
    description: Manage subscription packages
  - name: subscriptions
    description: Manage webhook subscriptions
  - name: track
    description: Track shipments
  - name: transports
    description: Manage transport services
  - name: users
    description: Manage users
  - name: warehouses
    description: Get warehouse information
paths:
  /transports/{transportId}:
    get:
      tags:
        - transports
      summary: Get transport
      description: Get transport record by its ID.
      operationId: getTransport
      parameters:
        - name: transportId
          in: path
          required: true
          schema:
            type: integer
            format: int64
          description: The unique identifier for a transport record.
      responses:
        '200':
          description: >-
            Returns the transport record details including routing and current
            status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransportGet'
        '400':
          description: >-
            Bad request - the request payload is invalid, missing required
            fields, or contains invalid data.
        '401':
          description: >-
            Unauthorized - authentication credentials are missing, invalid, or
            expired.
        '404':
          description: >-
            Not found - the requested resource does not exist or is not
            accessible.
        '500':
          description: Internal server error - an unexpected error occurred on the server.
components:
  schemas:
    TransportGet:
      required:
        - positions
        - sellerId
        - shipFrom
        - shipTo
      type: object
      properties:
        shipTo:
          $ref: '#/components/schemas/AddressData'
        sellerId:
          type: integer
          description: Seller ID.
          format: int64
        pickupDate:
          type: string
          description: Optional estimated date of departure
          format: date
        deliveryDate:
          type: string
          description: Optional estimated date of arrival
          format: date
        shipFrom:
          $ref: '#/components/schemas/AddressData'
        positions:
          type: array
          description: List of the positions for transportation.
          items:
            $ref: '#/components/schemas/TransportPositionData'
        id:
          type: integer
          format: int64
          description: The unique identifier for the id
        created:
          type: string
          format: date-time
          description: Timestamp when the item was created
        reference:
          type: string
          description: Reference number or identifier for the item
        exportedAt:
          type: string
          format: date-time
          description: The exported at timestamp
        status:
          type: string
          enum:
            - CREATED
            - TRANSMITTED
          description: The current status of the item
        freightOrderIdentifier:
          type: string
          description: The unique identifier for the freightorderentifier
        requestId:
          type: string
          description: The unique identifier for the request
      description: >-
        Complete transport record information. Contains transport details
        including origin, destination, mode, shipment references, and status.
    AddressData:
      required:
        - city
        - countryIso2
        - street
      type: object
      properties:
        name:
          type: string
          description: Name of the person. <br>Usually this is the first and last name.
        company:
          type: string
          description: Name of the company.
        phone:
          type: string
          description: Phone number. <br>The phone number is usually optional.
        email:
          type: string
          description: E-Mail address.
        zip:
          type: string
          description: >-
            ZIP Code. <br>The ZIP code is optional for some countries, but
            required for most.
        city:
          type: string
          description: City. <br>The city should always be specified.
        state:
          type: string
          description: >-
            State. <br>This is not required for most countries, but required in
            some (eg: United States).
        countryIso2:
          type: string
          description: Country. <br>The country should always be specified.
        street:
          type: string
          description: >-
            Street (or Address Line 1). <br>This field should always be
            specified.
        street2:
          type: string
          description: Street (or Address Line 2). <br>This field is optional.
      description: Address data structure
    TransportPositionData:
      required:
        - contentDescription
        - deliveryType
        - quantity
        - unitHeightM
        - unitLengthM
        - unitWeightKg
        - unitWidthM
      type: object
      properties:
        deliveryType:
          type: string
          description: Delivery type.
          enum:
            - CONTAINER
            - CARTON
            - EUPAL
            - EWPAL
        containerType:
          type: string
          description: >-
            Type of the container. <br>Required only if delivery type is
            CONTAINER
        quantity:
          minimum: 1
          type: integer
          description: Number of units of the position.
          format: int32
        unitWeightKg:
          minimum: 0
          exclusiveMinimum: true
          type: number
          description: Weight in kg per unit.
        unitLengthM:
          minimum: 0
          exclusiveMinimum: true
          type: number
          description: Length in meters per unit.
        unitWidthM:
          minimum: 0
          exclusiveMinimum: true
          type: number
          description: Width in meters per unit.
        unitHeightM:
          minimum: 0
          exclusiveMinimum: true
          type: number
          description: Height in meters per unit.
        contentDescription:
          type: string
          description: Name or short description of a position.
      description: 'The '

````