Connectors

    Connect HighQube to any system via REST API or MCP.

    REST API

    Available

    A standard JSON REST API for programmatic access to all rate data, contracts, and surcharges. Integrates with any language or platform in minutes.

    • JSON responses
    • API key authentication
    • Real-time rate data
    • Webhook support (coming soon)

    MCP

    Coming Soon

    The Model Context Protocol (MCP) lets AI agents and LLMs call HighQube as a native tool — enabling intelligent freight workflows, automated quoting, and rate-aware AI applications.

    • Native AI tool integration
    • Works with Claude, GPT, and others
    • No manual API parsing
    • Rate-aware agent workflows

    Getting Started with the API

    1

    Request Access

    Sign up on the waitlist and receive your API key via email.

    2

    Authenticate

    Pass your API key in the Authorization header with every request.

    3

    Query Rates

    Call endpoints to retrieve ocean and air rates, contracts, and surcharges in real time.

    4

    Integrate

    Feed the JSON responses directly into your TMS, ERP, rating, or accounting system.

    Example Request
    curl -X GET https://api.highqube.ai/v1/rates/ocean \
      -H "Authorization: Bearer YOUR_API_KEY" \
      -H "Content-Type: application/json" \
      -d '{
        "origin": "CNSHA",
        "destination": "USLAX",
        "date": "2026-05-01"
      }'
    Available Endpoints
    GET/v1/rates/ocean
    GET/v1/rates/air
    GET/v1/contracts
    GET/v1/surcharges
    POST/v1/rates/query

    Getting Started with MCP

    Coming Soon

    MCP (Model Context Protocol) is an open standard that lets AI models interact with external services as native tools. When HighQube is connected as an MCP server, your AI agent can query rates just like calling a function — no prompting required.

    1

    Request MCP Access

    Contact us to enable the MCP connector for your account.

    2

    Configure Your Agent

    Point your AI agent or LLM tool at the HighQube MCP server endpoint.

    3

    Expose Rate Tools

    Your agent can now query rates, check surcharges, and pull contract data as native tool calls.

    4

    Build Workflows

    Combine HighQube rate data with other tools to automate freight quoting, auditing, and reporting.

    MCP Server Configuration
    {
      "mcpServers": {
        "highqube": {
          "url": "https://mcp.highqube.ai",
          "apiKey": "YOUR_API_KEY",
          "tools": [
            "get_ocean_rates",
            "get_air_rates",
            "list_contracts",
            "get_surcharges"
          ]
        }
      }
    }
    Available MCP Tools
    toolget_ocean_rates
    toolget_air_rates
    toollist_contracts
    toolget_surcharges
    toolquery_rates

    Ready to connect?

    Join the waitlist to get early API access, or schedule a demo to see HighQube in action.