Skip to content
Back to Warp Freight

Card snapshot

www.wearewarp.com · 2026-06-08 18:50:35 UTC · 09da256c1f0d4fe71d5251b5423e34173af872adec43bfd7228eebe0e4142cd8

This is a frozen copy of the agent's agent-card.json as we observed it at the timestamp above. We capture a new snapshot every time the card's content hash changes. Useful for: forensic drift analysis, verifying downstream callers see the right version, reproducing routing decisions made historically.

{
  "name": "Warp Freight",
  "description": "Programmatic US domestic freight agent. Quote, book, track, and audit LTL, FTL, box truck, and cargo van shipments. All-inclusive rates at booking. Backed by 38,000+ carriers and 50+ cross-dock facilities. Does NOT serve cross-border (Canada/Mexico), food-grade, international forwarding, warehousing/3PL fulfillment, or parcel.",
  "version": "0.13.2",
  "iconUrl": "https://www.wearewarp.com/warp-logo.svg",
  "documentationUrl": "https://www.wearewarp.com/agents",
  "provider": {
    "organization": "Warp",
    "url": "https://www.wearewarp.com"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "extendedAgentCard": false
  },
  "supportedInterfaces": [
    {
      "protocolBinding": "JSONRPC",
      "protocolVersion": "1.0",
      "url": "https://www.wearewarp.com/api/a2a/jsonrpc"
    }
  ],
  "defaultInputModes": [
    "application/json",
    "text/plain"
  ],
  "defaultOutputModes": [
    "application/json",
    "text/plain"
  ],
  "securitySchemes": {
    "warpApiKey": {
      "type": "http",
      "scheme": "bearer",
      "description": "Warp API key. Sandbox (wak_test_*) and production (wak_live_*) keys are issued instantly at https://www.wearewarp.com/agents/account \u2014 no card required to obtain a sandbox key or to call quote endpoints. Card on file required for booking."
    }
  },
  "security": [
    {
      "warpApiKey": []
    },
    {}
  ],
  "skills": [
    {
      "id": "get_ltl_freight_quote",
      "name": "Get LTL freight quote",
      "description": "Get a real-time less-than-truckload freight quote between two US ZIP codes. Returns per-pallet pricing, transit days, and a bookable rate. Keyless.",
      "tags": [
        "freight",
        "ltl",
        "quote",
        "us-domestic"
      ],
      "examples": [
        "Quote an LTL shipment from 90001 to 60601 for 2 pallets at 500 lbs each, pickup 2026-06-01",
        "Send a DataPart with { skill: \"get_ltl_freight_quote\", params: { pickupZip, deliveryZip, pickupDate, pallets, weightPerPallet } }"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_ftl_freight_quote",
      "name": "Get FTL freight quote",
      "description": "Get a full-truckload freight quote between two US ZIP codes. Returns total rate, transit days, and equipment options (dry van 53, reefer, etc). Keyless.",
      "tags": [
        "freight",
        "ftl",
        "truckload",
        "quote",
        "us-domestic"
      ],
      "examples": [
        "Quote an FTL dry van shipment from 90001 to 30301, pickup 2026-06-01",
        "Send a DataPart with { skill: \"get_ftl_freight_quote\", params: { pickupZip, deliveryZip, pickupDate, equipment } }"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_box_truck_quote",
      "name": "Get box truck quote",
      "description": "Get a 26-foot straight-truck quote for 1-12 pallet loads. Includes optional liftgate. Keyless.",
      "tags": [
        "freight",
        "box-truck",
        "quote",
        "us-domestic"
      ],
      "examples": [
        "Quote a 26ft box truck from 90001 to 92101 for 6 pallets with liftgate, pickup 2026-06-01",
        "Send a DataPart with { skill: \"get_box_truck_quote\", params: { pickupZip, deliveryZip, pickupDate, pallets, weightPerPallet, liftgateDelivery } }"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_cargo_van_quote",
      "name": "Get cargo van quote",
      "description": "Get a same-day or next-day cargo van quote for 1-3 pallet urgent shipments. Keyless.",
      "tags": [
        "freight",
        "cargo-van",
        "quote",
        "urgent",
        "us-domestic"
      ],
      "examples": [
        "Quote a same-day cargo van from 90001 to 92101 for 2 pallets, pickup today",
        "Send a DataPart with { skill: \"get_cargo_van_quote\", params: { pickupZip, deliveryZip, pickupDate, pallets, weightPerPallet } }"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "track_shipment",
      "name": "Track a shipment",
      "description": "Get the latest tracking events for a booked Warp shipment by order code. Returns status, last event, and ETA. Requires Bearer auth (the key the shipment was booked under).",
      "tags": [
        "freight",
        "tracking",
        "us-domestic"
      ],
      "examples": [
        "Track shipment WT2026-12345",
        "Send a DataPart with { skill: \"track_shipment\", params: { orderCode } } and Authorization: Bearer wak_live_*"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "get_lane_rate_history",
      "name": "Get lane rate history",
      "description": "Get your account's recent freight quotes \u2014 origin, destination, mode, price, and date \u2014 the rate history behind your lanes. Requires Bearer auth.",
      "tags": [
        "freight",
        "rates",
        "analytics",
        "us-domestic"
      ],
      "examples": [
        "Show my recent LTL quotes and their rates",
        "Send a DataPart with { skill: \"get_lane_rate_history\", params: {} } and Authorization: Bearer wak_live_*"
      ],
      "inputModes": [
        "application/json",
        "text/plain"
      ],
      "outputModes": [
        "application/json",
        "text/plain"
      ]
    },
    {
      "id": "book_shipment",
      "name": "Book a freight shipment",
      "description": "Book a freight shipment from a prior quote. Requires Bearer authentication (warpApiKey). Card on file is charged for booking.",
      "tags": [
        "freight",
        "booking",
        "authenticated",
        "us-domestic"
      ],
      "examples": [
        "Book the quote with quote_id wq_\u2026 after providing pickup + delivery addresses",
        "Send a DataPart with { skill: \"book_shipment\", params: { quote_id, patch: { pickup: {\u2026}, delivery: {\u2026} } } } and Authorization: Bearer wak_live_*"
      ],
      "inputModes": [
        "application/json"
      ],
      "outputModes": [
        "application/json"
      ]
    }
  ],
  "related": {
    "openapi": "https://www.wearewarp.com/.well-known/openapi.json",
    "mcp": "https://www.wearewarp.com/.well-known/mcp.json",
    "mcpToolCount": 23,
    "aiAgentIdentity": "https://www.wearewarp.com/.well-known/ai-agent.json",
    "aiPluginLegacy": "https://www.wearewarp.com/.well-known/ai-plugin.json",
    "llmsTxt": "https://www.wearewarp.com/llms.txt",
    "apiBase": "https://www.wearewarp.com/api/v1",
    "statusEndpoint": "https://www.wearewarp.com/api/status"
  }
}