Quantcast
Channel: Mercado Libre Developers
Viewing all articles
Browse latest Browse all 99

Classified location selection & search tutorial

$
0
0

To list a real state item, you will have to determine the property location, which includes state, city and in most cases neighborhood as well. To accomplish this, it’s better if you get familiar with the Classified Locations API.

Location selection

You only need to send the leaf location ID when publishing a property. This means that sending only the Neighborhood ID is enough for our API to complete with the corresponding State and City IDs. If the chosen city does not have any neighborhood, then you will only need to send the City ID. Sending either the Neighborhood ID or the City ID is mandatory. If you were to send nothing but a State ID, our API will not allow you to list the property (anyway you should never send a State ID since it will be automatically filled according to the Neighborhood ID or City ID provided).

This resource will allow you to browse the possible classified locations by country, state, city and neighborhood.

Browse all the countries

Example:

curl -X GET https://api.mercadolibre.com/classified_locations/countries

Response:

[
  {
    "id": "AR",
    "name": "Argentina",
    "locale": "es_AR",
    "currency_id": "ARS"
  },
  {
    "id": "BR",
    "name": "Brasil",
    "locale": "pt_BR",
    "currency_id": "BRL"
  },
  {
    "id": "CO",
    "name": "Colombia",
    "locale": "es_CO",
    "currency_id": "COP"
  },
  {
    "id": "CR",
    "name": "Costa Rica",
    "locale": "es_CR",
    "currency_id": "CRC"
  },
  {
    "id": "CL",
    "name": "Chile",
    "locale": "es_CL",
    "currency_id": "CLP"
  },
  {
    "id": "EC",
    "name": "Ecuador",
    "locale": "es_EC",
    "currency_id": "USD"
  },
  {
    "id": "MX",
    "name": "Mexico",
    "locale": "es_MX",
    "currency_id": "MXN"
  },
  {
    "id": "PA",
    "name": "Panamá",
    "locale": "es_PA",
    "currency_id": "USD"
  },
  {
    "id": "PE",
    "name": "Peru",
    "locale": "es_PE",
    "currency_id": "PEN"
  },
  {
    "id": "PT",
    "name": "Portugal",
    "locale": "pt_PT",
    "currency_id": "EUR"
  },
  {
    "id": "DO",
    "name": "República Dominicana",
    "locale": "es_DO",
    "currency_id": "DOP"
  },
  {
    "id": "UY",
    "name": "Uruguay",
    "locale": "es_UY",
    "currency_id": "UYU"
  },
  {
    "id": "VE",
    "name": "Venezuela",
    "locale": "es_VE",
    "currency_id": "VEF"
  }
]

Browse country information and states

Resource:

https://api.mercadolibre.com/classified_locations/countries/{Country_Id}

Example:

curl -X GET https://api.mercadolibre.com/classified_locations/countries/AR

Response:

{
  "id": "AR",
  "name": "Argentina",
  "locale": "es_AR",
  "currency_id": "ARS",
  "decimal_separator": ",",
  "thousands_separator": ".",
  "time_zone": "GMT-03:00",
  "geo_information": {
    "location": {
      "latitude": -38.416097,
      "longitude": -63.616672
    }
  },
  "states": [
    {
      "id": "TUxBUEJSQWwyMzA1",
      "name": "Brasil"
    },
    {
      "id": "TUxBUENPU2ExMmFkMw",
      "name": "Bs.As. Costa Atlántica"
    },
    {
      "id": "TUxBUEdSQWU4ZDkz",
      "name": "Bs.As. G.B.A. Norte"
    },
    {
      "id": "TUxBUEdSQWVmNTVm",
      "name": "Bs.As. G.B.A. Oeste"
    },
    {
      "id": "TUxBUEdSQXJlMDNm",
      "name": "Bs.As. G.B.A. Sur"
    },
    {
      "id": "TUxBUFpPTmFpbnRl",
      "name": "Buenos Aires Interior"
    },
    {
      "id": "TUxBUENBUGw3M2E1",
      "name": "Capital Federal"
    },
    {
      "id": "TUxBUENBVGFiY2Fm",
      "name": "Catamarca"
    },
    {
      "id": "TUxBUENIQW8xMTNhOA",
      "name": "Chaco"
    },
    {
      "id": "TUxBUENIVXQxNDM1MQ",
      "name": "Chubut"
    },
    {
      "id": "TUxBUENPUnM5MjI0",
      "name": "Corrientes"
    },
    {
      "id": "TUxBUENPUmFkZGIw",
      "name": "Córdoba"
    },
    {
      "id": "TUxBUEVOVHMzNTdm",
      "name": "Entre Ríos"
    },
    {
      "id": "TUxBUEZPUmE1OTk5",
      "name": "Formosa"
    },
    {
      "id": "TUxBUEpVSnk3YmUz",
      "name": "Jujuy"
    },
    {
      "id": "TUxBUExBWmE1OWMy",
      "name": "La Pampa"
    },
    {
      "id": "TUxBUExBWmEyNzY0",
      "name": "La Rioja"
    },
    {
      "id": "TUxBUE1FTmE5OWQ4",
      "name": "Mendoza"
    },
    {
      "id": "TUxBUE1JU3MzNjIx",
      "name": "Misiones"
    },
    {
      "id": "TUxBUE5FVW4xMzMzNQ",
      "name": "Neuquén"
    },
    {
      "id": "TUxBUFBBUjYxNzczMg",
      "name": "Paraguay"
    },
    {
      "id": "TUxBUFJFUDQyMjQ4Ng",
      "name": "República Dominicana"
    },
    {
      "id": "TUxBUFLNT29iZmZm",
      "name": "Río Negro"
    },
    {
      "id": "TUxBUFNBTGFjMTJi",
      "name": "Salta"
    },
    {
      "id": "TUxBUFNBTm5lYjU4",
      "name": "San Juan"
    },
    {
      "id": "TUxBUFNBTnM0ZTcz",
      "name": "San Luis"
    },
    {
      "id": "TUxBUFNBTno3ZmY5",
      "name": "Santa Cruz"
    },
    {
      "id": "TUxBUFNBTmU5Nzk2",
      "name": "Santa Fe"
    },
    {
      "id": "TUxBUFNBTm9lOTlk",
      "name": "Santiago del Estero"
    },
    {
      "id": "TUxBUFRJRVoxM2M5YQ",
      "name": "Tierra del Fuego"
    },
    {
      "id": "TUxBUFRVQ244NmM3",
      "name": "Tucumán"
    },
    {
      "id": "TUxBUFVTQWl1cXdlMg",
      "name": "USA"
    },
    {
      "id": "TUxBUFVSVXllZDVl",
      "name": "Uruguay"
    }
  ]
}

Browse state information and cities

Resource:

https://api.mercadolibre.com/classified_locations/states/{State_id}

Example:

curl -X GET https://api.mercadolibre.com/classified_locations/states/TUxBUENBUGw3M2E1

Response:

{
  "id": "TUxBUENBUGw3M2E1",
  "name": "Capital Federal",
  "country": {
    "id": "AR",
    "name": "Argentina"
  },
  "geo_information": {
    "location": {
      "latitude": -34.6143048,
      "longitude": -58.4401655
    }
  },
  "cities": [
    {
      "id": "TUxBQ0NBUGZlZG1sYQ",
      "name": "Capital Federal"
    }
  ]
}

Browse city information and neighborhoods

Resource:

https://api.mercadolibre.com/classified_locations/city/{City_id}

Example:

curl -X GET https://api.mercadolibre.com/classified_locations/cities/TUxBQ0NBUGZlZG1sYQ

Response:

{
  "id": "TUxBQ0NBUGZlZG1sYQ",
  "name": "Capital Federal",
  "state": {
    "id": "TUxBUENBUGw3M2E1",
    "name": "Capital Federal"
  },
  "country": {
    "id": "AR",
    "name": "Argentina"
  },
  "geo_information": {
    "location": {
      "latitude": -34.6084175,
      "longitude": -58.3731613
    }
  },
  "neighborhoods": [
    {
      "id": "TUxBQkFHUjk3NjJa",
      "name": "Agronomía"
    },
    {
      "id": "TUxBQkFMTTMwNTBa",
      "name": "Almagro"
    },
    {
      "id": "TUxBQkJBTDMxMDZa",
      "name": "Balvanera"
    },
    {
      "id": "TUxBQkJBUjM0MDha",
      "name": "Barracas"
    },
    {
      "id": "TUxBQkJBUjQwMDQ3MA",
      "name": "Barrio Norte"
    },
    {
      "id": "TUxBQkJFTDcyNTJa",
      "name": "Belgrano"
    },
    {
      "id": "TUxBQkJFTDkwNjNa",
      "name": "Belgrano Barrancas"
    },
    {
      "id": "TUxBQkJFTDk4MDRa",
      "name": "Belgrano C"
    },
    {
      "id": "TUxBQkJFTDU0ODda",
      "name": "Belgrano Chico"
    },
    {
      "id": "TUxBQkJFTDU5NzNa",
      "name": "Belgrano R"
    },
    {
      "id": "TUxBQkJPRTQ0OTRa",
      "name": "Boedo"
    },
    {
      "id": "TUxBQkJPVDQ2NTFa",
      "name": "Botánico"
    },
    {
      "id": "TUxBQkNBQjM4MDda",
      "name": "Caballito"
    },
    {
      "id": "TUxBQkNIQTM5NjBa",
      "name": "Chacarita"
    },
    {
      "id": "TUxBQkNPRzY5MTZa",
      "name": "Coghlan"
    },
    {
      "id": "TUxBQkNPTDI3NDNa",
      "name": "Colegiales"
    },
    {
      "id": "TUxBQkNPTjgyODY1Mg",
      "name": "Congreso"
    },
    {
      "id": "TUxBQkNPTjExMDBa",
      "name": "Constitución"
    },
    {
      "id": "TUxBQkZMTzMwNzRa",
      "name": "Flores"
    },
    {
      "id": "TUxBQkZMTzg5MjFa",
      "name": "Floresta"
    },
    {
      "id": "TUxBQkxBQjk1ODJa",
      "name": "La Boca"
    },
    {
      "id": "TUxBQkxBUzIxNTJa",
      "name": "Las Cañitas"
    },
    {
      "id": "TUxBQkxJTjEzNTha",
      "name": "Liniers"
    },
    {
      "id": "TUxBQk1BVDMwMDJa",
      "name": "Mataderos"
    },
    {
      "id": "TUxBQk1PTjUxOTJa",
      "name": "Monserrat"
    },
    {
      "id": "TUxBQk1PTjE2OTBa",
      "name": "Monte Castro"
    },
    {
      "id": "TUxBQk5VRTc3MTZa",
      "name": "Nueva Pompeya"
    },
    {
      "id": "TUxBQk7a0TcwOTRa",
      "name": "Núñez"
    },
    {
      "id": "TUxBQk9OQzM1Mjk5Ng",
      "name": "Once"
    },
    {
      "id": "TUxBQlBBTDI1MTVa",
      "name": "Palermo"
    },
    {
      "id": "TUxBQlBBTDg3OTha",
      "name": "Palermo Chico"
    },
    {
      "id": "TUxBQlBBTDg1NjJa",
      "name": "Palermo Hollywood"
    },
    {
      "id": "TUxBQlBBTDgwMjla",
      "name": "Palermo Nuevo"
    },
    {
      "id": "TUxBQlBBTDg3MDda",
      "name": "Palermo Soho"
    },
    {
      "id": "TUxBQlBBTDE5ODla",
      "name": "Palermo Viejo"
    },
    {
      "id": "TUxBQlBBUjQ1NDda",
      "name": "Parque Avellaneda"
    },
    {
      "id": "TUxBQlBBUjUyOTZa",
      "name": "Parque Chacabuco"
    },
    {
      "id": "TUxBQlBBUjYwMzZa",
      "name": "Parque Patricios"
    },
    {
      "id": "TUxBQlBBVDI0ODFa",
      "name": "Paternal"
    },
    {
      "id": "TUxBQlBVRTQ5NjBa",
      "name": "Puerto Madero"
    },
    {
      "id": "TUxBQlJFQzkyMTVa",
      "name": "Recoleta"
    },
    {
      "id": "TUxBQlJFVDgyMDVa",
      "name": "Retiro"
    },
    {
      "id": "TUxBQlNBQTM3Mzda",
      "name": "Saavedra"
    },
    {
      "id": "TUxBQlNBTjkwNTZa",
      "name": "San Cristóbal"
    },
    {
      "id": "TUxBQlNBTjgzMjRa",
      "name": "San Nicolás"
    },
    {
      "id": "TUxBQlNBTjgxMzNa",
      "name": "San Telmo"
    },
    {
      "id": "TUxBQlNBTjEyMjNa",
      "name": "Santa Rita"
    },
    {
      "id": "TUxBQlZFTDIwNDha",
      "name": "Velez Sarsfield"
    },
    {
      "id": "TUxBQlZFUjY3MDFa",
      "name": "Versailles"
    },
    {
      "id": "TUxBQlZJTDQyMjBa",
      "name": "Villa Crespo"
    },
    {
      "id": "TUxBQlZJTDYzNzZa",
      "name": "Villa Devoto"
    },
    {
      "id": "TUxBQlZJTDI1ODla",
      "name": "Villa Gral. Mitre"
    },
    {
      "id": "TUxBQlZJTDQ4MzBa",
      "name": "Villa Lugano"
    },
    {
      "id": "TUxBQlZJTDI3MDJa",
      "name": "Villa Luro"
    },
    {
      "id": "TUxBQlZJTDQyMjFa",
      "name": "Villa Ortúzar"
    },
    {
      "id": "TUxBQlZJTDE2MDBa",
      "name": "Villa Pueyrredón"
    },
    {
      "id": "TUxBQlZJTDM3Mzda",
      "name": "Villa Real"
    },
    {
      "id": "TUxBQlZJTDU5MTFa",
      "name": "Villa Riachuelo"
    },
    {
      "id": "TUxBQlZJTDM5MjZa",
      "name": "Villa Soldati"
    },
    {
      "id": "TUxBQlZJTDcwOTla",
      "name": "Villa Urquiza"
    },
    {
      "id": "TUxBQlZJTDc4MDda",
      "name": "Villa del Parque"
    }
  ]
}

Browse neighborhoods

Resource:

https://api.mercadolibre.com/classified_locations/neighborhoods/{Neighborhood_Id}

Example:

curl -X GET https://api.mercadolibre.com/classified_locations/neighborhoods/TUxBQkNBQjM4MDda

Response:

{
  "id": "TUxBQkNBQjM4MDda",
  "name": "Caballito",
  "city": {
    "id": "TUxBQ0NBUGZlZG1sYQ",
    "name": "Capital Federal"
  },
  "state": {
    "id": "TUxBUENBUGw3M2E1",
    "name": "Capital Federal"
  },
  "country": {
    "id": "AR",
    "name": "Argentina"
  },
  "geo_information": {
    "location": {
      "latitude": -34.6166667,
      "longitude": -58.45
    }
  },
  "subneighborhoods": [
  ]
}

Search real state item by location

Once you’ve selected a location for you real state item, this resource will allow you to search items by it’s location in between a specified latitude and longitud range.

Resource:

https://api.mercadolibre.com/sites/MLA/search?item_location=lat:{latitude1_latitude2},lon:{longitude1_longitude2}&category={Category_Id}

Example:
I’m including the real state items category on MLA, a location range inside Buenos Aires, AR and a limit of 2 items in the results.

curl -X GET https://api.mercadolibre.com/sites/MLA/search?item_location=lat:-37.987148_-30.987148,lon:-57.5483864_-50.5483864&category=MLA1459&limit=2

Response:

{
  "site_id": "MLA",
  "paging": {
    "total": 6246,
    "offset": 0,
    "limit": 2
  },
  "results": [
    {
      "id": "MLA532174177",
      "site_id": "MLA",
      "title": "Casa En Valeria Del Mar (gustavo)",
      "subtitle": null,
      "seller": {
        "id": 156627013,
        "power_seller_status": null,
        "car_dealer": false,
        "real_estate_agency": false
      },
      "price": 750,
      "currency_id": "ARS",
      "available_quantity": 1,
      "sold_quantity": 0,
      "buying_mode": "classified",
      "listing_type_id": "gold_premium",
      "stop_time": "2015-11-11T16:16:52.000Z",
      "condition": "new",
      "permalink": "http://casa.mercadolibre.com.ar/MLA-532174177-casa-en-valeria-del-mar-gustavo-_JM",
      "thumbnail": "http://mla-s2-p.mlstatic.com/19874-MLA20179087101_102014-I.jpg",
      "accepts_mercadopago": false,
      "installments": null,
      "address": {
        "state_id": "TUxBUENPU2ExMmFkMw",
        "state_name": "Bs.as. Costa Atlántica",
        "city_id": "TUxBQ1ZBTDM4MGFj",
        "city_name": "Valeria del Mar",
        "area_code": "02267",
        "phone1": "15538544"
      },
      "shipping": {
        "free_shipping": false,
        "mode": "not_specified"
      },
      "seller_address": {
        "id": 139563091,
        "comment": "",
        "address_line": "urthubey 1181",
        "zip_code": "7167",
        "country": {
          "id": "AR",
          "name": "Argentina"
        },
        "state": {
          "id": "AR-B",
          "name": "Buenos Aires"
        },
        "city": {
          "id": "TUxBQ1ZBTDM4MGFj",
          "name": "Valeria del Mar"
        },
        "latitude": "",
        "longitude": ""
      },
      "seller_contact": {
        "contact": "",
        "other_info": "",
        "area_code": "02267",
        "phone": "15538544",
        "area_code2": "",
        "phone2": "",
        "email": "",
        "webpage": ""
      },
      "location": {
        "address_line": "urthubey 1100",
        "zip_code": "",
        "subneighborhood": null,
        "neighborhood": {
          "id": "",
          "name": ""
        },
        "city": {
          "id": "TUxBQ1ZBTDM4MGFj",
          "name": "Valeria del Mar"
        },
        "state": {
          "id": "TUxBUENPU2ExMmFkMw",
          "name": "Bs.as. Costa Atlántica"
        },
        "country": {
          "id": "AR",
          "name": "Argentina"
        },
        "latitude": -37.137337,
        "longitude": -56.89233
      },
      "attributes": [
        {
          "attribute_group_id": "FIND",
          "id": "MLA1459-INMUEBLE",
          "name": "Inmueble",
          "value_name": "Casa",
          "value_id": "MLA1459-INMUEBLE-CASA",
          "attribute_group_name": "Ficha técnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1459-OPERACION",
          "name": "Operación",
          "value_name": "Alquiler Temporario",
          "value_id": "MLA1459-OPERACION-ALQUILER_DE_TEMPORADA",
          "attribute_group_name": "Ficha técnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1466-AMBQTY",
          "name": "Ambientes",
          "value_name": "4",
          "value_id": "MLA1466-AMBQTY-4",
          "attribute_group_name": "Ficha tecnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1466-MTRS",
          "name": "Superficie cubierta (m²)",
          "value_name": "90",
          "value_id": "",
          "attribute_group_name": "Ficha técnica"
        }
      ],
      "original_price": null,
      "category_id": "MLA50278"
    },
    {
      "id": "MLA532037889",
      "site_id": "MLA",
      "title": "Alquilo Duplex 3 Amb Barrio San Rafael - Mar De Ajo",
      "subtitle": null,
      "seller": {
        "id": 62970704,
        "power_seller_status": null,
        "car_dealer": false,
        "real_estate_agency": false
      },
      "price": 400,
      "currency_id": "ARS",
      "available_quantity": 1,
      "sold_quantity": 0,
      "buying_mode": "classified",
      "listing_type_id": "gold_premium",
      "stop_time": "2015-11-11T15:49:46.000Z",
      "condition": "used",
      "permalink": "http://casa.mercadolibre.com.ar/MLA-532037889-alquilo-duplex-3-amb-barrio-san-rafael-mar-de-ajo-_JM",
      "thumbnail": "http://mla-s2-p.mlstatic.com/20590-MLA20193199450_112014-I.jpg",
      "accepts_mercadopago": false,
      "installments": null,
      "address": {
        "state_id": "TUxBUENPU2ExMmFkMw",
        "state_name": "Bs.as. Costa Atlántica",
        "city_id": "TUxBQ01BUjNmZDhl",
        "city_name": "Mar de Ajo",
        "area_code": "011",
        "phone1": "15-5919-9616"
      },
      "shipping": {
        "free_shipping": false,
        "mode": "not_specified"
      },
      "seller_address": {
        "id": 152837111,
        "comment": "Duplex 4",
        "address_line": "Daniel Rial 200",
        "zip_code": "7109",
        "country": {
          "id": "AR",
          "name": "Argentina"
        },
        "state": {
          "id": "AR-B",
          "name": "Buenos Aires"
        },
        "city": {
          "id": "TUxBQ01BUjNmZDhl",
          "name": "Mar de Ajo"
        },
        "latitude": -36.715473,
        "longitude": -56.676258
      },
      "seller_contact": {
        "contact": "",
        "other_info": "",
        "area_code": "011",
        "phone": "15-5919-9616",
        "area_code2": "",
        "phone2": "",
        "email": "",
        "webpage": ""
      },
      "location": {
        "address_line": "Daniel Rial 200",
        "zip_code": "",
        "subneighborhood": null,
        "neighborhood": {
          "id": "",
          "name": ""
        },
        "city": {
          "id": "TUxBQ01BUjNmZDhl",
          "name": "Mar de Ajo"
        },
        "state": {
          "id": "TUxBUENPU2ExMmFkMw",
          "name": "Bs.as. Costa Atlántica"
        },
        "country": {
          "id": "AR",
          "name": "Argentina"
        },
        "latitude": -36.715473,
        "longitude": -56.676258
      },
      "attributes": [
        {
          "attribute_group_id": "FIND",
          "id": "MLA1459-INMUEBLE",
          "name": "Inmueble",
          "value_name": "Casa",
          "value_id": "MLA1459-INMUEBLE-CASA",
          "attribute_group_name": "Ficha técnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1459-OPERACION",
          "name": "Operación",
          "value_name": "Alquiler Temporario",
          "value_id": "MLA1459-OPERACION-ALQUILER_DE_TEMPORADA",
          "attribute_group_name": "Ficha técnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1466-AMBQTY",
          "name": "Ambientes",
          "value_name": "3",
          "value_id": "MLA1466-AMBQTY-3",
          "attribute_group_name": "Ficha tecnica"
        },
        {
          "attribute_group_id": "FIND",
          "id": "MLA1466-MTRS",
          "name": "Superficie cubierta (m²)",
          "value_name": "95",
          "value_id": "",
          "attribute_group_name": "Ficha técnica"
        }
      ],
      "original_price": null,
      "category_id": "MLA50278"
    }
  ],
  "secondary_results": [
  ],
  "related_results": [
  ],
  "sort": {
    "id": "relevance",
    "name": "More relevant"
  },
  "available_sorts": [
    {
      "id": "price_asc",
      "name": "Lower price"
    },
    {
      "id": "price_desc",
      "name": "Higher price"
    }
  ],
  "filters": [
    {
      "id": "category",
      "name": "Categories",
      "type": "text",
      "values": [
        {
          "id": "MLA1459",
          "name": "Inmuebles",
          "path_from_root": [
            {
              "id": "MLA1459",
              "name": "Inmuebles"
            }
          ]
        }
      ]
    }
  ],
  "available_filters": [
    {
      "id": "9991459-AMLA_1459_1",
      "name": "Inmueble",
      "type": "text",
      "values": [
        {
          "id": "9991459-AMLA_1459_1-MMLA12617",
          "name": "Departamentos",
          "results": 2624
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12616",
          "name": "Casas",
          "results": 2597
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12619",
          "name": "Terrenos y Lotes",
          "results": 263
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12777",
          "name": "Tiempo Compartido",
          "results": 184
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA32199",
          "name": "PH",
          "results": 82
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA23362",
          "name": "Locales",
          "results": 45
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12780",
          "name": "Fondo de Comercio",
          "results": 17
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12778",
          "name": "Cocheras",
          "results": 10
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12781",
          "name": "Quintas",
          "results": 8
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12782",
          "name": "Oficinas y Consultorios",
          "results": 4
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12615",
          "name": "Campos",
          "results": 3
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA28331",
          "name": "Depósitos y Galpones",
          "results": 2
        },
        {
          "id": "9991459-AMLA_1459_1-MMLA12618",
          "name": "Otros Inmuebles",
          "results": 407
        }
      ]
    },
    {
      "id": "9991459-AMLA_1459_2",
      "name": "Operación",
      "type": "text",
      "values": [
        {
          "id": "9991459-AMLA_1459_2-MMLA14069",
          "name": "Alquiler Temporario",
          "results": 4794
        },
        {
          "id": "9991459-AMLA_1459_2-MMLA12623",
          "name": "Venta",
          "results": 1199
        },
        {
          "id": "9991459-AMLA_1459_2-MMLA12620",
          "name": "Alquiler",
          "results": 253
        }
      ]
    },
    {
      "id": "state",
      "name": "Location",
      "type": "text",
      "values": [
        {
          "id": "TUxBUENPU2ExMmFkMw",
          "name": "Bs.As. Costa Atlántica",
          "results": 5666
        },
        {
          "id": "TUxBUFVSVXllZDVl",
          "name": "Uruguay",
          "results": 566
        },
        {
          "id": "TUxBUFpPTmFpbnRl",
          "name": "Buenos Aires Interior",
          "results": 14
        }
      ]
    },
    {
      "id": "price",
      "name": "Price range",
      "type": "range",
      "values": [
        {
          "id": "*-700.0",
          "name": "Up to $700",
          "results": 2043
        },
        {
          "id": "700.0-8000.0",
          "name": "$700 to $8.000",
          "results": 2013
        },
        {
          "id": "8000.0-*",
          "name": "More than $8.000",
          "results": 2190
        }
      ]
    },
    {
      "id": "159-MTRSTOTAL",
      "name": "Metros totales",
      "type": "range",
      "values": [
        {
          "id": "*-35.0",
          "name": "Up to 35 m²",
          "results": 1078
        },
        {
          "id": "35.0-65.0",
          "name": "35 to 65m²",
          "results": 1397
        },
        {
          "id": "65.0-100.0",
          "name": "65 to 100m²",
          "results": 1065
        },
        {
          "id": "100.0-300.0",
          "name": "100 to 300m²",
          "results": 1285
        },
        {
          "id": "300.0-*",
          "name": "More than 300m²",
          "results": 1421
        }
      ]
    },
    {
      "id": "159-AMBQTY",
      "name": "Cant. de ambientes",
      "type": "text",
      "values": [
        {
          "id": "159-AMBQTY-1",
          "name": "1 ambiente",
          "results": 381
        },
        {
          "id": "159-AMBQTY-2",
          "name": "2 ambientes",
          "results": 1425
        },
        {
          "id": "159-AMBQTY-3",
          "name": "3 ambientes",
          "results": 1820
        },
        {
          "id": "159-AMBQTY-4",
          "name": "4 ambientes",
          "results": 859
        }
      ]
    },
    {
      "id": "159-GARAGE",
      "name": "Cochera/s",
      "type": "text",
      "values": [
        {
          "id": "159-GARAGE-1",
          "name": "1 cochera",
          "results": 2250
        },
        {
          "id": "159-GARAGE-2",
          "name": "2 cocheras",
          "results": 351
        },
        {
          "id": "159-GARAGE-3",
          "name": "3 cocheras",
          "results": 74
        },
        {
          "id": "159-GARAGE-4_O_MAS",
          "name": "4 o más cocheras",
          "results": 150
        }
      ]
    },
    {
      "id": "159-AIRCEN",
      "name": "Aire acondicionado central",
      "type": "boolean",
      "values": [
        {
          "id": "159-AIRCEN-YES",
          "name": "Con aire acondicionado central",
          "results": 517
        }
      ]
    },
    {
      "id": "159-ALAR",
      "name": "Alarma",
      "type": "boolean",
      "values": [
        {
          "id": "159-ALAR-YES",
          "name": "Con Alarma",
          "results": 774
        }
      ]
    },
    {
      "id": "real_estate_agency",
      "name": "Real estate agency filter",
      "type": "boolean",
      "values": [
        {
          "id": "yes",
          "name": "Real estate agency",
          "results": 910
        }
      ]
    },
    {
      "id": "condition",
      "name": "Condition filter",
      "type": "text",
      "values": [
        {
          "id": "new",
          "name": "New",
          "results": 795
        },
        {
          "id": "used",
          "name": "Used",
          "results": 5124
        }
      ]
    },
    {
      "id": "power_seller",
      "name": "Seller quality filter",
      "type": "boolean",
      "values": [
        {
          "id": "yes",
          "name": "Best sellers",
          "results": 23
        }
      ]
    },
    {
      "id": "buying_mode",
      "name": "Buying mode filter",
      "type": "text",
      "values": [
        {
          "id": "buy_it_now",
          "name": "Buy it now",
          "results": 6246
        }
      ]
    },
    {
      "id": "since",
      "name": "Auction start date filter",
      "type": "text",
      "values": [
        {
          "id": "today",
          "name": "Starting today",
          "results": 117
        }
      ]
    },
    {
      "id": "until",
      "name": "Auction stop filter",
      "type": "text",
      "values": [
        {
          "id": "today",
          "name": "Ending today",
          "results": 22
        }
      ]
    },
    {
      "id": "has_video",
      "name": "Video publications filter",
      "type": "boolean",
      "values": [
        {
          "id": "yes",
          "name": "Publications with video",
          "results": 200
        }
      ]
    },
    {
      "id": "has_pictures",
      "name": "Items with images filter",
      "type": "boolean",
      "values": [
        {
          "id": "yes",
          "name": "With pictures",
          "results": 6177
        }
      ]
    }
  ]
}

Please, rate this article


Viewing all articles
Browse latest Browse all 99

Trending Articles