Quick Zip

Find the best available service for your shipment by keying in the destination postal code below. You can use this search for shipments originating in the U.S. or Canada with a destination in the U.S. or Canada.

<style>
.section-divider { border: 0; border-top: 1px solid rgba(0, 0, 0, .1); } table { border-collapse: collapse; } table thead th { background-color: transparent; font-size: .875rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; min-width: 250px; } @media (max-width: 500px) { table thead th { min-width: 100px; } } table td ul li { line-height: 28px; } table tbody tr:nth-child(odd) th { font-weight: 500; } table td, table th { vertical-align: top; padding: 24px 12px; } table td p { margin-bottom: 0.8em; } table td:last-child, table th:last-child { text-align: left; } table tbody tr:nth-child(even), table tbody tr:nth-child(even) th { background-color: transparent; } .component-header { margin: 0; } .component-body.quickzip-result-table { margin-top: 48px; text-align: center; overflow-x: auto; } tr { border-bottom: 1px solid #dfdbd7; }
</style>

<div class=quickzip-form><div class=ups-container><div class=input-controls-container style=max-width:550px;width:100%;margin:auto><div class="ups-form_group ups-input"style=max-width:360px;width:100%;margin:auto;display:inline-block data-plugin=inputControl><div class="ups-input_wrapper ups-text_wrapper"><input class="quickzip-field ups-form_input"data-name="Enter Postal Code"name="Enter Postal Code" placeholder="Destination Postal Code"></div></div><button aria-label=Submit class="ups-analytics ups-cta ups-cta-primary"id=submitBtn style=margin-top:6px;display:inline-block;vertical-align:top;margin-left:10px>Submit <span aria-hidden=true class="icon ups-icon-right-arrow"></span></button></div><hr class=section-divider style="margin:1.5rem 0;display:none"><div class=quickzip-err-msg style=display:none><h2 style=font-size:1.25rem>Your zip code could not be located in Quick Zip. Please enter another zip code and try again.</h2></div><div class="quickzip-postal-result scroll ups-component"style=display:none data-plugin=upsTable><div class=ups-container><div class=component-header style=margin:0><h4 style=font-size:1.25rem>Quick Zip Results for <span id=city></span>, <span id=state></span>,  <span id=postal-code></span></h4></div><div class="component-body quickzip-result-table"><table><thead><tr><th scope=col>Shipping Term<th scope=col>Shipping Code<th scope=col>Shipping General Description<tbody><tr><th scope=row>Service Level Code<td scope=row><span id=service-code></span><td><p><strong>T:</strong> Delivery by 9:30 AM the next business day<p><strong>A:</strong> Delivery by noon the next business day<p><strong>P:</strong> Delivery by the next business day by 5:00 PM<p><strong>B1:</strong> Delivery by the next business day by 5:00 PM. Additional charges will apply.<p><strong>2D:</strong> Delivery by the second business day by 5:00 PM. NO Additional charges apply.<p><strong>B2:</strong> Delivery by the second business day or later. Additional charges will apply.<p><strong>B3:</strong> Delivery by the third business day or later. Additional charges will apply.<p><strong>Please Note:</strong><ul><li>For Saturday delivery service to B1, B2 or B3 zip code destinations, please contact 1-800-443-6379 or your local service center for delivery availability or special arrangements. Additional charges may apply.<li>For B2 points, an additional day should be added to all service levels depending upon the destination.<li>For B3 points, an additional 2 or more days should be added to all service levels, depending upon the destination.<li>All shipments are subject to UPS Air Freight Terms and Conditions of contract in effect on date of shipment ("Terms"). Terms are available upon request or at <a class="ups-analytics ups-link"href=https://www.ups.com/us/en/supplychain/about/freight-terms-of-service.page target=_blank>https://www.ups.com/us/en/supplychain/about/freight-terms-of-service.page</a>. Said terms and conditions include but not limited to Guaranteed Service terms, conditions, and limitations.</ul><tr><th scope=row style=font-weight:500 colspan=3>UPS Expedite, Gold Priority, Economy service, and Saturday delivery are also available to this destination<tr><th scope=row>Tariff Point<td scope=row><span id=tariff-point></span><td>Destination airport used for tariff calculations<tr><th scope=row style=font-weight:500>Beyond Point?<td scope=row><span id=beyond-point></span><td>Is the postal code beyond the normal Service Area?<tr><th scope=row>K-Van Beyond Pt?<td scope=row><span id=k-van-flag></span><td>Inside pickup or delivery beyond the metropolitan Service Area?</table></div></div></div></div></div>

<script>

        function quickzipResult() {

            var postalCode = $("input:text").val();

            let timestamp = new Date().getTime().toString();

            const calculatetime = timestamp

                .substr(timestamp.length - 6)

                .split('')

                .map(Number)

                ?.reduce(function (acc, val) {

                    return acc + val;

                }, 0);

            const scskey = btoa(

                '2cb220c0-9972-41ed-bc6d-257433b6d0ae^' + timestamp + '|' + calculatetime

            );

            $.ajax({

                url: "https://scsapps.ups.com/api/ufhapp/geo/GetQuickZipDetails/" + postalCode,

                crossDomain: true,

                dataType: 'json',

                header: { 'SCS-API-KEY': scskey },

                beforeSend: function (jqXHR, settings) {

                    jqXHR.setRequestHeader('scs-api-key', scskey

                    );

                },

                success: function (result) {

                    if (result.postalCode) {

                        $('#postal-code').html(result.postalCode);

                        $('#service-code').html(result.serviceCode);

                        $('#tariff-point').html(result.tariffPoint);

                        $('#city').html(result.city);

                        $('#state').html(result.state);

                        if (result.beyondPoint == true) {

                            $('#beyond-point').html("YES");

                        }

                        else {

                            $('#beyond-point').html("NO");

                        }

                        if (result.flagKVan == true) {

                            $('#k-van-flag').html("YES");

                        }

                        else {

                            $('#k-van-flag').html("NO");

                        }

                        $(".quickzip-postal-result").show();

                        $(".section-divider").show();

                        $(".quickzip-err-msg").hide();

                    } else {

                        $(".quickzip-postal-result").hide();

                        $(".section-divider").show();

                        $(".quickzip-err-msg").show();

                    }

                },

                error: function (error) {

                    $(".quickzip-postal-result").hide();

                    $(".section-divider").show();

                    $(".quickzip-err-msg").show();

                },

            });

        }

        $("#submitBtn").click(function (e) {

        e.preventDefault();

    quickzipResult();

        });

    $(".ups-form_input.quickzip-field").keypress(function (event) {

            if (event.which == 13) {

        quickzipResult();

            }

        });

</script>

Ready to Ship?

Dashboard icon for Hub

The UPS® Forwarding Hub

Our all-in-one customer portal lets you get and compare quotes, book and track shipments all on one modern, easy-to-navigate platform.

Get a Freight Quote

Article icon for Email Sign Up

Stay Informed

Get weekly insights into all things freight and logistics, delivered right to your inbox.

Sign Me Up

<script type="text/javascript">// <![CDATA[
    window.onload = function(){
        function quickzipResult() {
            var postalCode = $("input:text").val();



            let timestamp = new Date().getTime().toString();
            const calculatetime = timestamp
                .substr(timestamp.length - 6)
                .split('')
                .map(Number)
                ?.reduce(function (acc, val) {
                    return acc + val;
                }, 0);



            const scskey = btoa(
                '2cb220c0-9972-41ed-bc6d-257433b6d0ae^' + timestamp + '|' + calculatetime
            );
            $.ajax({
                url: "https://scsapps.ups.com/api/ufhapp/geo/GetQuickZipDetails/" + postalCode,
                crossDomain: true,
                dataType: 'json',
                header: { 'SCS-API-KEY': scskey },
                beforeSend: function (jqXHR, settings) {
                    jqXHR.setRequestHeader('scs-api-key', scskey
                    );
                },
                success: function (result) {
                    if (result.postalCode) {
                        $('#postal-code').html(result.postalCode);
                        $('#service-code').html(result.serviceCode);
                        $('#tariff-point').html(result.tariffPoint);
                        $('#city').html(result.city);
                        $('#state').html(result.state);
                        if (result.beyondPoint == true) {
                            $('#beyond-point').html("YES");
                        }
                        else {
                            $('#beyond-point').html("NO");
                        }
                        if (result.flagKVan == true) {
                            $('#k-van-flag').html("YES");
                        }
                        else {
                            $('#k-van-flag').html("NO");
                        }
                        $(".quickzip-postal-result").show();
                        $(".section-divider").show();
                        $(".quickzip-err-msg").hide();
                    } else {
                        $(".quickzip-postal-result").hide();
                        $(".section-divider").show();
                        $(".quickzip-err-msg").show();
                    }
                },
                error: function (error) {
                    $(".quickzip-postal-result").hide();
                    $(".section-divider").show();
                    $(".quickzip-err-msg").show();
                },
            });
        }
        $("#submitBtn").click(function (e) {
        e.preventDefault();
    quickzipResult();
        });
    $(".ups-form_input.quickzip-field").keypress(function (event) {
            if (event.which == 13) {
        quickzipResult();
            }
        });
    };
    // ]]></script>