Skip Navigation

Car Locations By Airport City

2.1.0
Car
Search
SOAP API
Travel Agency

Deprecated API

No New Users - All new users must use Geo Search.

The Car Locations By Airport City (VehLocationListLLSRQ) is used to display locations of car rental vendors for a specific airport or city code for vendor coded to the specific input airport code, such as LAX, LHR, JFK, etc.

Target Audience
Travel Agency
API Version
2.1.0
Authentication
Session Token
Service Action Code
VehLocationListLLSRQ

Important! This API will be decommissioned on June 30, 2022. Moving forward, please use the GeoSearch API. Refer to the Car Migration Guide for further details.


Use this API to request vehicle rental locations and specify a distance/direction, a particular vehicle rental vendor, exclude a particular vehicle rental vendor, specify a point of interest, or specify a rail station.

Sample Request
<?xml version="1.0" encoding="UTF-8"?>
<!--Search for vehicle rental locations based upon an airport code.-->
<!--Equivalent Sabre host command: CLLDFW-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <VehRentalCore>
            <PickUpLocation LocationCode="DFW"/>
        </VehRentalCore>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations based upon an address.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-SOUTHLAKE/A-3150 SABRE DRIVE-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails>
            <Address>
                <CityName>SOUTHLAKE</CityName>
                <StateCountyProv StateCode="TX"/>
                <StreetNmbr>3150 SABRE DRIVE</StreetNmbr>
            </Address>
        </LocationDetails>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations and specify a distance/direction.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-SOUTHLAKE/D-8E-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails Direction="E" Distance="8">
            <Address>
                <CityName>SOUTHLAKE</CityName>
                <StateCountyProv StateCode="TX"/>
            </Address>
        </LocationDetails>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations and specify a particular vehicle rental vendor.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-SOUTHLAKE-ET,ZE-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails>
            <Address>
                <CityName>SOUTHLAKE</CityName>
                <StateCountyProv StateCode="TX"/>
            </Address>
        </LocationDetails>
        <VendorPrefs>
            <VendorPref Code="ET"/>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations and exclude a particular vehicle rental vendor.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-SOUTHLAKE-X-ET,ZE-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails Exclude="true">
            <Address>
                <CityName>SOUTHLAKE</CityName>
                <StateCountyProv StateCode="TX"/>
            </Address>
        </LocationDetails>
        <VendorPrefs>
            <VendorPref Code="ET"/>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations and specify a point of interest.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-DALLAS/P-DFW AIRPORT-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails>
            <Address>
                <CityName>DALLAS</CityName>
                <StateCountyProv StateCode="TX"/>
            </Address>
            <PointOfInterest>DFW AIRPORT</PointOfInterest>
        </LocationDetails>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations and specify a rail station.-->
<!--Equivalent Sabre host command: CLL/S-TX/N-DALLAS/R-DALLAS AMTRAK-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails>
            <Address>
                <CityName>DALLAS</CityName>
                <StateCountyProv StateCode="TX"/>
            </Address>
            <RailStation>DALLAS AMTRAK</RailStation>
        </LocationDetails>
    </VehAvailRQCore>
</VehLocationListRQ>
<!--Search for vehicle rental locations within the specific latitude and longitude. Also, specify a particular vehicle rental vendor.-->
<!--Equivalent Sabre host command: CLL/LAT-32.739800/LON-97.093800-ET,ZE-->
<VehLocationListRQ Version="2.1.0" xmlns="http://webservices.sabre.com/sabreXML/2011/10" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <VehAvailRQCore>
        <LocationDetails Latitude="32.739800" Longitude="-97.093800"/>
        <VendorPrefs>
            <VendorPref Code="ET"/>
            <VendorPref Code="ZE"/>
        </VendorPrefs>
    </VehAvailRQCore>
</VehLocationListRQ>
Sample Response
<?xml version="1.0" encoding="UTF-8"?>
<VehLocationListRS xmlns="http://webservices.sabre.com/sabreXML/2011/10" Version="2.1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:stl="http://services.sabre.com/STL/v01">
    <stl:ApplicationResults status="Complete">
        <stl:Success timeStamp="2018-09-04T14:51:15-05:00"/>
    </stl:ApplicationResults>
    <VehAvailRSCore>
        <VehVendorAvails>
            <VehVendorAvail RPH="1">
                <LocationDetails Direction="S" Distance="0.1" LocationCode="DFW" LocationName="DFW INTERNATIONAL AIRPORT" UnitOfMeasure="MI">
                    <Address Latitude="32.894200" Longitude="-97.040400">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 EAST 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZD" CompanyShortName="BUDGET"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="2">
                <LocationDetails Direction="S" Distance="0.1" LocationCode="DFW" LocationName="DFWDFW DALLAS FORT WORTH AR" UnitOfMeasure="MI">
                    <Address Latitude="32.894200" Longitude="-97.040400">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 E 38TH ST</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="AL" CompanyShortName="ALAMO"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="3">
                <LocationDetails Direction="S" Distance="0.2" LocationCode="DFW" LocationName="EZ RENT A CAR" UnitOfMeasure="MI">
                    <Address Latitude="32.892000" Longitude="-97.040000">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>DALLAS FT WORTH INTL AIRPORT</StreetNmbr>
                        <StreetNmbr>CAR RENTAL CENTRE</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="EZ" CompanyShortName="EZRENT"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="4">
                <LocationDetails Direction="NW" Distance="2.4" ExtendedLocationCode="N016" LocationCode="DFW" LocationName="DFWN16 GRAPEVINE FORD" UnitOfMeasure="MI">
                    <Address Latitude="32.923100" Longitude="-97.067000">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>701 E STATE HIGHWAY 114</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="5">
                <LocationDetails Direction="S" Distance="2.6" LocationCode="DFW" LocationName="DFWDFW DALLAS FORT WORTH AR" UnitOfMeasure="MI">
                    <Address Latitude="32.857700" Longitude="-97.035000">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 EAST 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZL" CompanyShortName="NATIONAL"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="6">
                <LocationDetails Direction="S" Distance="2.6" LocationCode="DFW" LocationName="DALLAS FORT WORTH AIRPORT" UnitOfMeasure="MI">
                    <Address Latitude="32.857560" Longitude="-97.035583">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2426 EAST 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZI" CompanyShortName="AVIS"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="7">
                <LocationDetails Direction="S" Distance="2.6" LocationCode="DFW" LocationName="DALLAS FT WORTH AIRPORT" UnitOfMeasure="MI">
                    <Address Latitude="32.857560" Longitude="-97.035583">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 EAST 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZE" CompanyShortName="HERTZ"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="8">
                <LocationDetails Direction="S" Distance="2.6" LocationCode="DFW" LocationName="DFW  DALLAS FT WORTH" UnitOfMeasure="MI">
                    <Address Latitude="32.857551" Longitude="-97.035588">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 E 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZR" CompanyShortName="DOLLAR"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="9">
                <LocationDetails Direction="S" Distance="2.6" LocationCode="DFW" LocationName="DALLAS FORT WORTH AIRPORT" UnitOfMeasure="MI">
                    <Address Latitude="32.857551" Longitude="-97.035588">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 EAST 38TH STREET</StreetNmbr>
                        <StreetNmbr>II PLEASE GO TO NATIONAL CAR RENTAL II</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="EP" CompanyShortName="EUROPCAR"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="10">
                <LocationDetails Direction="S" Distance="2.9" LocationCode="DFW" LocationName="DALLAS FORT WORTH AP" UnitOfMeasure="MI">
                    <Address Latitude="32.855227" Longitude="-97.028625">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 EAST 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="AD" CompanyShortName="ADVANTAGE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="11">
                <LocationDetails Direction="NW" Distance="3.0" ExtendedLocationCode="N010" LocationCode="DFW" LocationName="DFWN10 GRAPEVINE TX" UnitOfMeasure="MI">
                    <Address Latitude="32.932700" Longitude="-97.070900">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>617 EAST DALLAS ROAD</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZD" CompanyShortName="BUDGET"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="12">
                <LocationDetails Direction="SE" Distance="3.3" LocationCode="DFW" LocationName="DFW AUTO RENTAL" UnitOfMeasure="MI">
                    <Address Latitude="32.857300" Longitude="-97.007999">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>3701 ESTERS RD</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="AC" CompanyShortName="ACE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="13">
                <LocationDetails Direction="W" Distance="3.5" ExtendedLocationCode="N036" LocationCode="DFW" LocationName="DFWN36 GRAPEVINE DODGE" UnitOfMeasure="MI">
                    <Address Latitude="32.912700" Longitude="-97.099100">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2601 WILLIAM D TATE AVE</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="14">
                <LocationDetails Direction="NW" Distance="3.8" ExtendedLocationCode="N007" LocationCode="DFW" LocationName="DFWN07 CRAIGS GRAPEVINE" UnitOfMeasure="MI">
                    <Address Latitude="32.930600" Longitude="-97.092100">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2078 W STATE HIGHWAY 114</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="15">
                <LocationDetails Direction="N" Distance="4.1" ExtendedLocationCode="W045" LocationCode="DFW" LocationName="DFWW45  GAYLORD TEXAN HLE" UnitOfMeasure="MI">
                    <Address Latitude="32.954000" Longitude="-97.062000">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1501 GAYLORD TRAIL</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZE" CompanyShortName="HERTZ"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="16">
                <LocationDetails Direction="SE" Distance="4.6" ExtendedLocationCode="C046" LocationCode="DFW" LocationName="DFWC46 IRVING SERVICE KING" UnitOfMeasure="MI">
                    <Address Latitude="32.836600" Longitude="-97.003500">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>3910 W AIRPORT FREEWAY</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="17">
                <LocationDetails Direction="SE" Distance="4.8" ExtendedLocationCode="W005" LocationCode="DFW" LocationName="DFWW05  EAST IRVING HLE" UnitOfMeasure="MI">
                    <Address Latitude="32.838600" Longitude="-96.992300">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>3401 WEST AIRPORT FREEWAY</StreetNmbr>
                        <StreetNmbr>SUITE 137</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZE" CompanyShortName="HERTZ"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="18">
                <LocationDetails Direction="SW" Distance="5.3" ExtendedLocationCode="S041" LocationCode="DFW" LocationName="DFWS41 BEDFORD" UnitOfMeasure="MI">
                    <Address Latitude="32.848000" Longitude="-97.112700">
                        <CityName>BEDFORD</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2900 HWY 121  STE 150</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="19">
                <LocationDetails Direction="SE" Distance="5.5" ExtendedLocationCode="W002" LocationCode="DFW" LocationName="DFWW02 IRVING TX" UnitOfMeasure="MI">
                    <Address Latitude="32.837400" Longitude="-96.977200">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2415 WEST AIRPORT FREEWAY</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZD" CompanyShortName="BUDGET"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="20">
                <LocationDetails Direction="SW" Distance="5.6" ExtendedLocationCode="W099" LocationCode="DFW" LocationName="DFWW99 IRVING CONVENTION CE" UnitOfMeasure="MI">
                    <Address Latitude="32.838200" Longitude="-97.108700">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>500 LAS COLINAS BLVD W</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="21">
                <LocationDetails Direction="SW" Distance="5.7" ExtendedLocationCode="W004" LocationCode="DFW" LocationName="DFWW04 SERVICE KING  EULESS" UnitOfMeasure="MI">
                    <Address Latitude="32.837300" Longitude="-97.111000">
                        <CityName>EULESS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1751 AIRPORT FWY 1</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="22">
                <LocationDetails Direction="SE" Distance="5.8" ExtendedLocationCode="W004" LocationCode="DFW" LocationName="DFWW04 SEARS AUTO CENTER" UnitOfMeasure="MI">
                    <Address Latitude="32.829796" Longitude="-96.979427">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2501 IRVING MALL ROAD</StreetNmbr>
                        <StreetNmbr>IRVING MALL</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZI" CompanyShortName="AVIS"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="23">
                <LocationDetails Direction="W" Distance="6.7" ExtendedLocationCode="W071" LocationCode="DFW" LocationName="DFWW71 COLLEYVILLE" UnitOfMeasure="MI">
                    <Address Latitude="32.880200" Longitude="-97.156300">
                        <CityName>COLLEYVILLE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>4843 COLLEYVILLE BLVD STE 211</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="24">
                <LocationDetails Direction="SE" Distance="6.9" ExtendedLocationCode="W081" LocationCode="DFW" LocationName="DFWW81 IRVING EAST" UnitOfMeasure="MI">
                    <Address Latitude="32.837400" Longitude="-96.944500">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2210 N MACARTHUR BLVD</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="25">
                <LocationDetails Direction="SE" Distance="7.7" ExtendedLocationCode="W083" LocationCode="DFW" LocationName="DFWW83 BANKSTON NISSAN" UnitOfMeasure="MI">
                    <Address Latitude="32.836500" Longitude="-96.927300">
                        <CityName>IRVING</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1450 E AIRPORT FREEWAY</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="26">
                <LocationDetails Direction="NE" Distance="8.5" ExtendedLocationCode="N008" LocationCode="DFW" LocationName="DFWN008 SEARS AUTO CENTER" UnitOfMeasure="MI">
                    <Address Latitude="32.961400" Longitude="-96.916200">
                        <CityName>FRISCO</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2605 PRESTON ROAD</StreetNmbr>
                        <StreetNmbr>STONEBRIAR MALL SUITE B</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZD" CompanyShortName="BUDGET"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="27">
                <LocationDetails Direction="NE" Distance="8.6" ExtendedLocationCode="N005" LocationCode="DFW" LocationName="DFWN05 LEWISVILLE SEARS AUT" UnitOfMeasure="MI">
                    <Address Latitude="33.006020" Longitude="-96.971609">
                        <CityName>LEWISVILLE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2403 S STEMMONS FREEWAY STE 115</StreetNmbr>
                        <StreetNmbr>VISTA RIDGE MALL</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZI" CompanyShortName="AVIS"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="28">
                <LocationDetails Direction="NE" Distance="8.6" ExtendedLocationCode="N004" LocationCode="DFW" LocationName="DFWN04 VAN CHEVROLET" UnitOfMeasure="MI">
                    <Address Latitude="32.950500" Longitude="-96.907100">
                        <CityName>CARROLLTON</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1105 VANDERGRIFF</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="29">
                <LocationDetails Direction="E" Distance="8.7" ExtendedLocationCode="C038" LocationCode="DFW" LocationName="DFWC38 DALLAS LBJ I35" UnitOfMeasure="MI">
                    <Address Latitude="32.904400" Longitude="-96.891200">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>11613 DENTON DRIVE</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="30">
                <LocationDetails Direction="S" Distance="9.1" ExtendedLocationCode="S003" LocationCode="DFW" LocationName="DFWS03 GRND PRAIRIE N ARLIN" UnitOfMeasure="MI">
                    <Address Latitude="32.764921" Longitude="-97.062899">
                        <CityName>GRAND PRAIRIE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1110 N STATE HWY 360</StreetNmbr>
                        <StreetNmbr>AT AVE J</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZI" CompanyShortName="AVIS"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="31">
                <LocationDetails Direction="N" Distance="9.1" ExtendedLocationCode="N070" LocationCode="DFW" LocationName="DFWN70  LEWISVILLE SOUTH" UnitOfMeasure="MI">
                    <Address Latitude="33.020100" Longitude="-96.985300">
                        <CityName>LEWISVILLE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1653 S STEMMONS FWY</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="32">
                <LocationDetails Direction="NW" Distance="9.2" ExtendedLocationCode="C001" LocationCode="SHA" LocationName="SHAC01 SHANGHAI  DOWNTOWN" UnitOfMeasure="MI">
                    <Address Latitude="32.982263" Longitude="-97.161872">
                        <CityName>SHANGHAI</CityName>
                        <CountryCode>CN</CountryCode>
                        <StreetNmbr>596 FUXING MIDDLE RD</StreetNmbr>
                        <StreetNmbr>LUWAN</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZI" CompanyShortName="AVIS"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="33">
                <LocationDetails Direction="SW" Distance="9.3" LocationCode="DFW" LocationName="DALLAS FORT WORTH AIRPORT" UnitOfMeasure="MI">
                    <Address Latitude="32.773913" Longitude="-97.107912">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2424 E 38TH STREET</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="JL" CompanyShortName="JL TESTCAR"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="34">
                <LocationDetails Direction="SW" Distance="9.3" LocationCode="LAX" LocationName="LOS ANGELES INTERNATIONAL A" UnitOfMeasure="MI">
                    <Address Latitude="32.773913" Longitude="-97.107912">
                        <CityName>LOS ANGELES</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="CA"/>
                        <StreetNmbr>9217 AIRPORT BLVD</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="JL" CompanyShortName="JL TESTCAR"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="35">
                <LocationDetails Direction="E" Distance="9.4" ExtendedLocationCode="C018" LocationCode="DFW" LocationName="DFWC18  DALLAS NORTH WEST H" UnitOfMeasure="MI">
                    <Address Latitude="32.909500" Longitude="-96.879900">
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>2909 FOREST LANE</StreetNmbr>
                        <StreetNmbr>SUITE 500</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZE" CompanyShortName="HERTZ"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="36">
                <LocationDetails Direction="N" Distance="9.5" ExtendedLocationCode="N003" LocationCode="DFW" LocationName="DFWN03 HUFFINES SERVICE" UnitOfMeasure="MI">
                    <Address Latitude="33.027600" Longitude="-96.990900">
                        <CityName>LEWISVILLE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1400 S I35E</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="37">
                <LocationDetails Direction="S" Distance="9.6" ExtendedLocationCode="S031" LocationCode="DFW" LocationName="DFWS31 GRAND PRAIRIE NORTH" UnitOfMeasure="MI">
                    <Address Latitude="32.761505" Longitude="-96.999540">
                        <CityName>GRAND PRAIRIE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>401 E PALACE PKWY</StreetNmbr>
                        <StreetNmbr>SUITE 201</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="38">
                <LocationDetails Direction="NW" Distance="9.6" ExtendedLocationCode="N045" LocationCode="DFW" LocationName="DFWN45 GRAPEVINE CLASSIC CH" UnitOfMeasure="MI">
                    <Address Latitude="32.984900" Longitude="-97.170100">
                        <CityName>GRAPEVINE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>1101 W HIGHWAY 114</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="39">
                <LocationDetails Direction="N" Distance="9.8" ExtendedLocationCode="W028" LocationCode="DFW" LocationName="DFWW28 LEWISVILLE NORTH" UnitOfMeasure="MI">
                    <Address Latitude="33.033445" Longitude="-96.993644">
                        <CityName>LEWISVILLE</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>301 HUFFINES PLAZA</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ET" CompanyShortName="ENTERPRISE"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="40">
                <LocationDetails Direction="NA" LocationCode="DFW" LocationName="DFW    DALLAS FT WORTH INTL">
                    <Address>
                        <CityName>DALLAS</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>3838 NORTHBOUND SERVICE ROAD</StreetNmbr>
                        <StreetNmbr>IN TERMINAL DFW INTL AIRPORT</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZT" CompanyShortName="THRIFTY"/>
            </VehVendorAvail>
            <VehVendorAvail RPH="41">
                <LocationDetails Direction="NA" ExtendedLocationCode="E002" LocationCode="FTW" LocationName="FTWE02 ARLINGTON TX">
                    <Address>
                        <CityName>ARLINGTON</CityName>
                        <CountryCode>US</CountryCode>
                        <StateProv StateCode="TX"/>
                        <StreetNmbr>3212 EAST ABRAMS</StreetNmbr>
                    </Address>
                </LocationDetails>
                <Vendor Code="ZD" CompanyShortName="BUDGET"/>
            </VehVendorAvail>
        </VehVendorAvails>
    </VehAvailRSCore>
</VehLocationListRS>