Ryder System Load Events API

Load tender and event management

Operations 5

GET /loads List Load Tenders #
GET /loads/{loadId} Get Load Details #
POST /loads/{loadId}/accept Accept Load Tender #
POST /loads/{loadId}/decline Decline Load Tender #
POST /loads/{loadId}/events Submit Load Event #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/ryder-system-load-events-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

ryder-system-load-events-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ryder Carrier Load Events API
  description: The Ryder Carrier API enables carriers to push updates to Ryder for managing transportation, brokerage, and tracking services. Carriers can submit event updates for load tenders, milestones, and vehicle locations, and upload documents to the RyderShare platform. Authentication uses an API key provided in the Ocp-Apim-Subscription-Key header.
  version: '2026-01-01'
  contact:
    name: Ryder Developer Portal
    url: https://developer.ryder.com
servers:
- url: https://api.ryder.com/rcsc/events/v1
  description: Production
- url: https://apiqa.ryder.com/rcsc/events/v1
  description: Testing
security:
- apiKeyAuth: []
tags:
- name: Load Events
  description: Load tender and event management
paths:
  /loads:
    get:
      operationId: listLoads
      summary: List Load Tenders
      description: Retrieve a list of load tenders assigned to the carrier.
      tags:
      - Load Events
      parameters:
      - name: status
        in: query
        schema:
          type: string
          enum:
          - pending
          - accepted
          - declined
          - in_transit
          - delivered
        description: Filter by load status
      - name: page
        in: query
        schema:
          type: integer
      - name: pageSize
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  loads:
                    type: array
                    items:
                      $ref: '#/components/schemas/Load'
        '401':
          description: Unauthorized
  /loads/{loadId}:
    get:
      operationId: getLoad
      summary: Get Load Details
      description: Retrieve detailed information for a specific load tender.
      tags:
      - Load Events
      parameters:
      - name: loadId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Load'
        '404':
          description: Load not found
  /loads/{loadId}/accept:
    post:
      operationId: acceptLoad
      summary: Accept Load Tender
      description: Accept a load tender from Ryder.
      tags:
      - Load Events
      parameters:
      - name: loadId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                driver_id:
                  type: string
                vehicle_id:
                  type: string
      responses:
        '200':
          description: Load accepted
        '404':
          description: Load not found
  /loads/{loadId}/decline:
    post:
      operationId: declineLoad
      summary: Decline Load Tender
      description: Decline a load tender from Ryder.
      tags:
      - Load Events
      parameters:
      - name: loadId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                reason:
                  type: string
      responses:
        '200':
          description: Load declined
  /loads/{loadId}/events:
    post:
      operationId: createLoadEvent
      summary: Submit Load Event
      description: Submit an event update for a load, such as pickup confirmation, delivery milestone, or delay notification.
      tags:
      - Load Events
      parameters:
      - name: loadId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LoadEventCreate'
      responses:
        '200':
          description: Event submitted
        '400':
          description: Invalid event data
components:
  schemas:
    Location:
      type: object
      properties:
        name:
          type: string
        address:
          type: string
        city:
          type: string
        state:
          type: string
        zip:
          type: string
        latitude:
          type: number
          format: double
        longitude:
          type: number
          format: double
    LoadEventCreate:
      type: object
      required:
      - event_type
      - timestamp
      properties:
        event_type:
          type: string
          enum:
          - pickup_arrived
          - pickup_completed
          - delivery_arrived
          - delivery_completed
          - delay
          - exception
        timestamp:
          type: string
          format: date-time
        location:
          $ref: '#/components/schemas/Location'
        notes:
          type: string
    Load:
      type: object
      properties:
        loadId:
          type: string
        status:
          type: string
          enum:
          - pending
          - accepted
          - declined
          - in_transit
          - delivered
        origin:
          $ref: '#/components/schemas/Location'
        destination:
          $ref: '#/components/schemas/Location'
        pickupDate:
          type: string
          format: date-time
        deliveryDate:
          type: string
          format: date-time
        weight:
          type: number
          description: Weight in pounds
        commodity:
          type: string
        driver:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
        vehicle:
          type: object
          properties:
            id:
              type: string
            type:
              type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Ocp-Apim-Subscription-Key
externalDocs:
  description: Ryder Carrier API Documentation
  url: https://developer.ryder.com/scs/docs/scs-carrier/overview