@horizon-domains/property-model
Version:
Modelo de propriedades imobiliárias v3 - Sistema de atributos dinâmicos
1,921 lines (1,918 loc) • 459 kB
TypeScript
import { z } from 'zod';
var fields = [
{
key: "reference",
label: "Referência",
type: "String",
validation: {
required: true
},
categories: [
"identificacao"
],
origin: "hb:property"
},
{
key: "updated_at",
label: "Última atualização",
type: "String",
format: "datetime",
categories: [
"sistema"
],
origin: "hb:property"
},
{
key: "title",
label: "Título",
type: "String",
validation: {
required: true,
maxLength: 200
},
categories: [
"identificacao"
],
origin: "hb:property"
},
{
key: "description",
label: "Descrição",
type: "String",
validation: {
required: true
},
db: {
type: "text",
index: "fulltext"
},
categories: [
"identificacao"
],
origin: "hb:property"
},
{
key: "seo_slug",
label: "Slug SEO",
type: "String",
categories: [
"seo"
],
origin: "hb:property"
},
{
key: "seo_title",
label: "Título SEO",
type: "String",
validation: {
maxLength: 60
},
categories: [
"seo"
],
origin: "hb:property"
},
{
key: "seo_description",
label: "Descrição SEO",
type: "String",
validation: {
maxLength: 160
},
categories: [
"seo"
],
origin: "hb:property"
},
{
key: "seo_keywords",
label: "Palavras-chave SEO",
type: "String",
validation: {
maxLength: 200
},
categories: [
"seo"
],
origin: "hb:property"
},
{
key: "main_image",
label: "Imagem principal",
type: "Json",
categories: [
"media"
],
origin: "hb:property"
},
{
key: "images",
label: "Imagens",
type: "Json[]",
validation: {
required: true
},
categories: [
"media"
],
origin: "hb:property"
},
{
key: "videos",
label: "Vídeos",
type: "Json[]",
validation: {
required: true
},
categories: [
"media"
],
origin: "hb:property"
},
{
key: "virtual_tours",
label: "Tours virtuais",
type: "Json[]",
validation: {
required: true
},
categories: [
"media"
],
origin: "hb:property"
},
{
key: "documents",
label: "Documentos",
type: "Json[]",
validation: {
required: true
},
categories: [
"media"
],
origin: "hb:property"
},
{
key: "currency",
label: "Moeda",
type: "String",
db: {
"default": "BRL"
},
categories: [
"sistema"
],
origin: "hb:property"
},
{
key: "unit_area",
label: "Unidade de área",
type: "String",
db: {
"default": "m2"
},
categories: [
"sistema"
],
origin: "hb:property"
},
{
key: "unit_distance",
label: "Unidade de distância",
"enum": {
meters: "Metros",
km: "Quilômetros"
},
type: "String",
db: {
"default": "meters"
},
categories: [
"sistema"
],
origin: "hb:property"
},
{
key: "map_show_proximity",
label: "Exibir aproximado no mapa",
type: "Boolean",
db: {
"default": "false"
},
categories: [
"sistema"
],
origin: "hb:property"
},
{
key: "operacao",
label: "Operação",
"enum": {
venda: "Venda",
locacao: "Locação",
temporada: "Temporada"
},
type: "String[]",
categories: [
"comercial"
],
origin: "hb:property"
},
{
key: "valor_venda",
label: "Valor de venda",
type: "Number",
format: "currency",
unit: "BRL",
validation: {
precision: 2
},
conditions: [
"operacao:venda"
],
categories: [
"valores",
"principais"
],
origin: "hb:property"
},
{
key: "valor_locacao",
label: "Valor de locação",
type: "Number",
format: "currency",
unit: "BRL",
validation: {
precision: 2
},
conditions: [
"operacao:locacao"
],
categories: [
"valores",
"principais"
],
origin: "hb:property"
},
{
key: "valor_diaria",
label: "Valor da diária",
type: "Number",
format: "currency",
unit: "BRL",
validation: {
precision: 2
},
conditions: [
"operacao:temporada"
],
categories: [
"valores"
],
origin: "hb:property"
},
{
key: "valor_condominio",
label: "Valor do condomínio",
type: "Number",
format: "currency",
unit: "BRL",
validation: {
precision: 2
},
categories: [
"valores"
],
origin: "hb:property"
},
{
key: "valor_iptu",
label: "Valor do IPTU",
type: "Number",
format: "currency",
unit: "BRL",
validation: {
precision: 2
},
categories: [
"valores"
],
origin: "hb:property"
},
{
key: "area_total",
label: "Área total",
type: "Number",
format: "area",
unit: "m2",
validation: {
min: 0
},
categories: [
"estrutura",
"principais"
],
origin: "hb:property"
},
{
key: "area_privativa",
label: "Área privativa",
type: "Number",
format: "area",
unit: "m2",
validation: {
min: 0
},
categories: [
"estrutura"
],
origin: "hb:property"
},
{
key: "area_util",
label: "Área útil",
type: "Number",
format: "area",
unit: "m2",
validation: {
min: 0
},
categories: [
"estrutura"
],
origin: "hb:property"
},
{
key: "dormitorios",
label: "Dormitórios",
type: "Number",
format: "count",
validation: {
min: 0
},
categories: [
"dependencias",
"principais"
],
origin: "hb:property"
},
{
key: "suites",
label: "Suítes",
type: "Number",
format: "count",
validation: {
min: 0
},
categories: [
"dependencias"
],
origin: "hb:property"
},
{
key: "banheiros",
label: "Banheiros",
type: "Number",
format: "count",
validation: {
min: 0
},
categories: [
"dependencias",
"principais"
],
origin: "hb:property"
},
{
key: "vagas_garagem",
label: "Vagas de garagem",
type: "Number",
format: "count",
validation: {
min: 0
},
categories: [
"dependencias",
"principais"
],
origin: "hb:property"
},
{
key: "finalidade",
label: "Finalidade",
type: "String",
categories: [
"estrutura"
],
origin: "hb:property"
},
{
key: "tipo",
label: "Tipo do imóvel",
type: "String",
categories: [
"estrutura"
],
origin: "hb:property"
},
{
key: "subtipo",
label: "Sub-tipo do imóvel",
type: "String",
parent: "tipo",
categories: [
"estrutura"
],
origin: "hb:property"
},
{
key: "endereco_cep",
label: "CEP",
type: "String",
validation: {
maxLength: 9
},
mask: "cep",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_estado",
label: "Estado",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_cidade",
label: "Cidade",
type: "String",
parent: "endereco_estado",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_bairro",
label: "Bairro",
type: "String",
parent: "endereco_cidade",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_logradouro",
label: "Logradouro",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_numero",
label: "Número",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_complemento",
label: "Complemento",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_referencia",
label: "Referência",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "endereco_zona",
label: "Zona",
type: "String",
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "latitude",
label: "Latitude",
type: "Number",
validation: {
min: -90,
max: 90,
precision: 8
},
db: {
type: "decimal(10,8)",
index: "geo"
},
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "longitude",
label: "Longitude",
type: "Number",
validation: {
min: -180,
max: 180,
precision: 8
},
db: {
type: "decimal(11,8)",
index: "geo"
},
categories: [
"localizacao"
],
origin: "hb:property"
},
{
key: "mobiliado",
label: "Mobiliado",
type: "Boolean",
categories: [
"caracteristicas"
],
origin: "hb:property"
},
{
key: "caracteristicas",
label: "Características",
type: "String[]",
categories: [
"caracteristicas"
],
origin: "hb:property"
},
{
key: "destaque",
label: "Imóvel em destaque",
type: "Boolean",
categories: [
"comercial"
],
origin: "hb:property"
},
{
key: "corretor_key",
label: "ID do corretor",
type: "String",
categories: [
"corretor"
],
origin: "hb:property"
},
{
key: "corretor_nome",
label: "Nome do corretor",
type: "String",
categories: [
"corretor"
],
origin: "hb:property"
},
{
key: "condominio_key",
label: "ID do condomínio",
type: "String",
categories: [
"condominio"
],
origin: "hb:property"
},
{
key: "condominio_nome",
label: "Nome do condomínio",
type: "String",
categories: [
"condominio"
],
origin: "hb:property"
},
{
key: "tags",
label: "Tags do Imóvel",
type: "String[]",
categories: [
"identificacao"
],
origin: "hb:property"
},
{
key: "numero_pessoas",
label: "Número de pessoas",
type: "Number",
format: "count",
validation: {
min: 0
},
categories: [
"caracteristicas"
],
origin: "hb:property"
}
];
var horizonPropertySchemaBase = {
fields: fields
};
declare const HorizonPropertySchemaBaseZod: z.ZodObject<{
reference: z.ZodString;
updated_at: z.ZodOptional<z.ZodString>;
title: z.ZodString;
description: z.ZodString;
seo_slug: z.ZodOptional<z.ZodString>;
seo_title: z.ZodOptional<z.ZodString>;
seo_description: z.ZodOptional<z.ZodString>;
seo_keywords: z.ZodOptional<z.ZodString>;
main_image: z.ZodOptional<z.ZodAny>;
images: z.ZodArray<z.ZodAny, "many">;
videos: z.ZodArray<z.ZodAny, "many">;
virtual_tours: z.ZodArray<z.ZodAny, "many">;
documents: z.ZodArray<z.ZodAny, "many">;
currency: z.ZodOptional<z.ZodString>;
unit_area: z.ZodOptional<z.ZodString>;
unit_distance: z.ZodOptional<z.ZodEnum<["meters", "km"]>>;
map_show_proximity: z.ZodOptional<z.ZodBoolean>;
operacao: z.ZodOptional<z.ZodArray<z.ZodEnum<["venda", "locacao", "temporada"]>, "many">>;
valor_venda: z.ZodOptional<z.ZodNumber>;
valor_locacao: z.ZodOptional<z.ZodNumber>;
valor_diaria: z.ZodOptional<z.ZodNumber>;
valor_condominio: z.ZodOptional<z.ZodNumber>;
valor_iptu: z.ZodOptional<z.ZodNumber>;
area_total: z.ZodOptional<z.ZodNumber>;
area_privativa: z.ZodOptional<z.ZodNumber>;
area_util: z.ZodOptional<z.ZodNumber>;
dormitorios: z.ZodOptional<z.ZodNumber>;
suites: z.ZodOptional<z.ZodNumber>;
banheiros: z.ZodOptional<z.ZodNumber>;
vagas_garagem: z.ZodOptional<z.ZodNumber>;
finalidade: z.ZodOptional<z.ZodString>;
tipo: z.ZodOptional<z.ZodString>;
subtipo: z.ZodOptional<z.ZodString>;
endereco_cep: z.ZodOptional<z.ZodString>;
endereco_estado: z.ZodOptional<z.ZodString>;
endereco_cidade: z.ZodOptional<z.ZodString>;
endereco_bairro: z.ZodOptional<z.ZodString>;
endereco_logradouro: z.ZodOptional<z.ZodString>;
endereco_numero: z.ZodOptional<z.ZodString>;
endereco_complemento: z.ZodOptional<z.ZodString>;
endereco_referencia: z.ZodOptional<z.ZodString>;
endereco_zona: z.ZodOptional<z.ZodString>;
latitude: z.ZodOptional<z.ZodNumber>;
longitude: z.ZodOptional<z.ZodNumber>;
mobiliado: z.ZodOptional<z.ZodBoolean>;
caracteristicas: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
destaque: z.ZodOptional<z.ZodBoolean>;
corretor_key: z.ZodOptional<z.ZodString>;
corretor_nome: z.ZodOptional<z.ZodString>;
condominio_key: z.ZodOptional<z.ZodString>;
condominio_nome: z.ZodOptional<z.ZodString>;
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
numero_pessoas: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
reference: string;
title: string;
description: string;
images: any[];
videos: any[];
virtual_tours: any[];
documents: any[];
updated_at?: string | undefined;
seo_slug?: string | undefined;
seo_title?: string | undefined;
seo_description?: string | undefined;
seo_keywords?: string | undefined;
main_image?: any;
currency?: string | undefined;
unit_area?: string | undefined;
unit_distance?: "meters" | "km" | undefined;
map_show_proximity?: boolean | undefined;
operacao?: ("venda" | "locacao" | "temporada")[] | undefined;
valor_venda?: number | undefined;
valor_locacao?: number | undefined;
valor_diaria?: number | undefined;
valor_condominio?: number | undefined;
valor_iptu?: number | undefined;
area_total?: number | undefined;
area_privativa?: number | undefined;
area_util?: number | undefined;
dormitorios?: number | undefined;
suites?: number | undefined;
banheiros?: number | undefined;
vagas_garagem?: number | undefined;
finalidade?: string | undefined;
tipo?: string | undefined;
subtipo?: string | undefined;
endereco_cep?: string | undefined;
endereco_estado?: string | undefined;
endereco_cidade?: string | undefined;
endereco_bairro?: string | undefined;
endereco_logradouro?: string | undefined;
endereco_numero?: string | undefined;
endereco_complemento?: string | undefined;
endereco_referencia?: string | undefined;
endereco_zona?: string | undefined;
latitude?: number | undefined;
longitude?: number | undefined;
mobiliado?: boolean | undefined;
caracteristicas?: string[] | undefined;
destaque?: boolean | undefined;
corretor_key?: string | undefined;
corretor_nome?: string | undefined;
condominio_key?: string | undefined;
condominio_nome?: string | undefined;
tags?: string[] | undefined;
numero_pessoas?: number | undefined;
}, {
reference: string;
title: string;
description: string;
images: any[];
videos: any[];
virtual_tours: any[];
documents: any[];
updated_at?: string | undefined;
seo_slug?: string | undefined;
seo_title?: string | undefined;
seo_description?: string | undefined;
seo_keywords?: string | undefined;
main_image?: any;
currency?: string | undefined;
unit_area?: string | undefined;
unit_distance?: "meters" | "km" | undefined;
map_show_proximity?: boolean | undefined;
operacao?: ("venda" | "locacao" | "temporada")[] | undefined;
valor_venda?: number | undefined;
valor_locacao?: number | undefined;
valor_diaria?: number | undefined;
valor_condominio?: number | undefined;
valor_iptu?: number | undefined;
area_total?: number | undefined;
area_privativa?: number | undefined;
area_util?: number | undefined;
dormitorios?: number | undefined;
suites?: number | undefined;
banheiros?: number | undefined;
vagas_garagem?: number | undefined;
finalidade?: string | undefined;
tipo?: string | undefined;
subtipo?: string | undefined;
endereco_cep?: string | undefined;
endereco_estado?: string | undefined;
endereco_cidade?: string | undefined;
endereco_bairro?: string | undefined;
endereco_logradouro?: string | undefined;
endereco_numero?: string | undefined;
endereco_complemento?: string | undefined;
endereco_referencia?: string | undefined;
endereco_zona?: string | undefined;
latitude?: number | undefined;
longitude?: number | undefined;
mobiliado?: boolean | undefined;
caracteristicas?: string[] | undefined;
destaque?: boolean | undefined;
corretor_key?: string | undefined;
corretor_nome?: string | undefined;
condominio_key?: string | undefined;
condominio_nome?: string | undefined;
tags?: string[] | undefined;
numero_pessoas?: number | undefined;
}>;
type HorizonPropertySchemaBaseType = z.infer<typeof HorizonPropertySchemaBaseZod>;
var fakeApartamentos = [
{
reference: "FAKE_0004",
updated_at: "2025-08-12T13:21:43.745Z",
title: "Excelente Imóvel - 2 quartos, 120m²",
description: "Excelente imóvel localizado em excelente bairro, cidade. Imóvel com ótima localização e acabamento de qualidade. Características destacadas incluem Alarme, Casa de Caseiro, Gesso. Agende sua visita!",
seo_slug: "cobertura-venda-alto-de-pinheiros",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"venda",
"locacao"
],
valor_venda: 271159.04,
valor_locacao: 4428.57,
valor_diaria: 218.09,
valor_condominio: 290.92,
valor_iptu: 5285.19,
area_total: 175,
area_privativa: 155,
area_util: 96,
dormitorios: 5,
suites: 0,
banheiros: 3,
vagas_garagem: 3,
finalidade: "Mista",
tipo: "Apartamentos",
subtipo: "Cobertura",
endereco_cep: "63527-209",
endereco_estado: "Rio Grande do Sul",
endereco_cidade: "Novo Hamburgo",
endereco_bairro: "Alto de Pinheiros",
endereco_logradouro: "Rua XV de Novembro",
endereco_numero: "6499",
endereco_zona: "Oeste",
latitude: -23.51776708,
longitude: -46.66023804,
mobiliado: false,
caracteristicas: [
"Aquecimento Central",
"Box Blindex",
"Cozinha Planejada",
"Sanca",
"Edícula",
"Molduras"
],
destaque: false,
corretor_nome: "Roberto Lima",
tags: [
"Cobertura",
"Alto de pinheiros",
"Imóvel"
],
numero_pessoas: 7
},
{
reference: "FAKE_0011",
updated_at: "2025-08-12T13:21:43.748Z",
title: "Imóvel de 120m² em excelente localização",
description: "Oportunidade única! Imóvel com excelente localização em cidade. Imóvel pronto para morar com todas as comodidades necessárias.",
seo_slug: "duplex-venda-ribeir-o-da-ilha",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"venda"
],
valor_venda: 3856364.73,
valor_locacao: 12967.22,
valor_diaria: 334.41,
valor_condominio: 1442.83,
valor_iptu: 2204.47,
area_total: 265,
area_privativa: 60,
area_util: 161,
dormitorios: 4,
suites: 1,
banheiros: 4,
vagas_garagem: 0,
finalidade: "Comercial",
tipo: "Apartamentos",
subtipo: "Duplex",
endereco_cep: "78347-855",
endereco_estado: "Santa Catarina",
endereco_cidade: "Florianópolis",
endereco_bairro: "Ribeirão da Ilha",
endereco_logradouro: "Rua do Comércio",
endereco_numero: "9331",
endereco_zona: "Centro",
latitude: -23.53861084,
longitude: -46.62940141,
mobiliado: true,
caracteristicas: [
"Área Gourmet",
"Coworking",
"Recepção"
],
destaque: false,
corretor_nome: "Maria Oliveira",
tags: [
"Duplex",
"Ribeirão da ilha",
"Mobiliado",
"Imóvel"
],
numero_pessoas: 5
},
{
reference: "FAKE_0014",
updated_at: "2025-08-12T13:21:43.748Z",
title: "Imóvel premium com ótima localização",
description: "Excelente imóvel localizado em excelente bairro, cidade. Imóvel com ótima localização e acabamento de qualidade. Características destacadas incluem Churrasqueira, Mármore. Agende sua visita!",
seo_slug: "studio-locacao-canasvieiras",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"locacao",
"temporada"
],
valor_venda: 1280908.15,
valor_locacao: 5250.71,
valor_diaria: 672.82,
valor_condominio: 1328.9,
valor_iptu: 5838.64,
area_total: 413,
area_privativa: 420,
area_util: 128,
dormitorios: 2,
suites: 0,
banheiros: 4,
vagas_garagem: 3,
finalidade: "Rural",
tipo: "Apartamentos",
subtipo: "Studio",
endereco_cep: "90591-497",
endereco_estado: "Bahia",
endereco_cidade: "São Leopoldo",
endereco_bairro: "Canasvieiras",
endereco_logradouro: "Rua do Comércio",
endereco_numero: "899",
endereco_zona: "Centro-Sul",
latitude: -23.57061612,
longitude: -46.66554703,
mobiliado: true,
caracteristicas: [
"Portão Eletrônico",
"Sacada",
"Granito",
"Câmeras",
"Gesso",
"Churrasqueira"
],
destaque: false,
corretor_nome: "João Pereira",
condominio_nome: "Residencial Leblon Tower",
tags: [
"Studio",
"Canasvieiras",
"Mobiliado",
"Imóvel"
],
numero_pessoas: 3
},
{
reference: "FAKE_0015",
updated_at: "2025-08-12T13:21:43.748Z",
title: "Imóvel de 120m² em excelente localização",
description: "Imóvel moderno com excelente custo-benefício. Localizado em bairro nobre com fácil acesso a comércios e serviços. Acabamentos de primeira linha.",
seo_slug: "cobertura-venda-itaim-bibi",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"venda"
],
valor_venda: 2258203.98,
valor_locacao: 4666.83,
valor_diaria: 403.5,
valor_condominio: 1004.08,
valor_iptu: 3830.35,
area_total: 57,
area_privativa: 154,
area_util: 240,
dormitorios: 4,
suites: 0,
banheiros: 2,
vagas_garagem: 4,
finalidade: "Industrial",
tipo: "Apartamentos",
subtipo: "Cobertura",
endereco_cep: "41817-224",
endereco_estado: "Distrito Federal",
endereco_cidade: "Criciúma",
endereco_bairro: "Itaim Bibi",
endereco_logradouro: "Rua Tiradentes",
endereco_numero: "3817",
endereco_zona: "Sul",
latitude: -23.57930697,
longitude: -46.62956582,
mobiliado: true,
caracteristicas: [
"Portão Eletrônico",
"TV a Cabo",
"Piso Laminado",
"Poço Artesiano",
"Elevador",
"Lareira"
],
destaque: false,
corretor_nome: "Ana Silva",
condominio_nome: "Residencial Reserva das Águas",
tags: [
"Cobertura",
"Itaim bibi",
"Mobiliado",
"Imóvel"
],
numero_pessoas: 2
},
{
reference: "FAKE_0037",
updated_at: "2025-08-12T13:21:43.753Z",
title: "Excelente Imóvel - 2 quartos, 120m²",
description: "Imóvel moderno com excelente custo-benefício. Localizado em bairro nobre com fácil acesso a comércios e serviços. Acabamentos de primeira linha.",
seo_slug: "duplex-venda-belvedere",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"venda"
],
valor_venda: 560082.61,
valor_locacao: 2357.54,
valor_diaria: 303.72,
valor_condominio: 577.18,
valor_iptu: 1209.08,
area_total: 104,
area_privativa: 448,
area_util: 89,
dormitorios: 1,
suites: 0,
banheiros: 2,
vagas_garagem: 0,
finalidade: "Residencial",
tipo: "Apartamentos",
subtipo: "Duplex",
endereco_cep: "28668-017",
endereco_estado: "Rio Grande do Sul",
endereco_cidade: "Uruguaiana",
endereco_bairro: "Belvedere",
endereco_logradouro: "Rua XV de Novembro",
endereco_numero: "7965",
endereco_zona: "Centro",
latitude: -23.54076085,
longitude: -46.63466688,
mobiliado: true,
caracteristicas: [
"Piscina",
"Churrasqueira",
"Varanda",
"Gesso",
"Lavabo"
],
destaque: false,
corretor_nome: "Maria Oliveira",
tags: [
"Duplex",
"Belvedere",
"Mobiliado",
"Imóvel"
],
numero_pessoas: 6
},
{
reference: "FAKE_0040",
updated_at: "2025-08-12T13:21:43.753Z",
title: "Imóvel de 120m² em excelente localização",
description: "Excelente imóvel localizado em excelente bairro, cidade. Imóvel com ótima localização e acabamento de qualidade. Características destacadas incluem Piso Laminado, Cinema. Agende sua visita!",
seo_slug: "duplex-locacao-centro",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"locacao"
],
valor_venda: 1862829.1,
valor_locacao: 1303.26,
valor_diaria: 384.73,
valor_condominio: 1519.78,
valor_iptu: 4334.83,
area_total: 496,
area_privativa: 397,
area_util: 47,
dormitorios: 5,
suites: 2,
banheiros: 2,
vagas_garagem: 0,
finalidade: "Industrial",
tipo: "Apartamentos",
subtipo: "Duplex",
endereco_cep: "11577-206",
endereco_estado: "Bahia",
endereco_cidade: "Blumenau",
endereco_bairro: "Centro",
endereco_logradouro: "Rua Marechal Deodoro",
endereco_numero: "9433",
endereco_zona: "Leste",
latitude: -23.51371631,
longitude: -46.58495402,
mobiliado: false,
caracteristicas: [
"Cinema",
"Cozinha Planejada",
"Playground",
"Sacada",
"Sauna"
],
destaque: false,
corretor_nome: "Patricia Souza",
tags: [
"Duplex",
"Centro",
"Imóvel"
],
numero_pessoas: 2
},
{
reference: "FAKE_0041",
updated_at: "2025-08-12T13:21:43.753Z",
title: "Imóvel premium com ótima localização",
description: "Oportunidade única! Imóvel com excelente localização em cidade. Imóvel pronto para morar com todas as comodidades necessárias.",
seo_slug: "garden-locacao-mooca",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"locacao"
],
valor_venda: 3789545.96,
valor_locacao: 6550.17,
valor_diaria: 622.63,
valor_condominio: 1572.97,
valor_iptu: 5679.72,
area_total: 116,
area_privativa: 320,
area_util: 339,
dormitorios: 5,
suites: 0,
banheiros: 1,
vagas_garagem: 1,
finalidade: "Mista",
tipo: "Apartamentos",
subtipo: "Garden",
endereco_cep: "91867-728",
endereco_estado: "Pernambuco",
endereco_cidade: "Nova Iguaçu",
endereco_bairro: "Mooca",
endereco_logradouro: "Avenida Central",
endereco_numero: "1485",
endereco_zona: "Leste",
latitude: -23.57415356,
longitude: -46.67982593,
mobiliado: false,
caracteristicas: [
"Casa de Caseiro",
"Quadra",
"Elevador",
"Recepção"
],
destaque: false,
corretor_nome: "Patricia Souza",
condominio_nome: "Condomínio Ingleses Beach",
tags: [
"Garden",
"Mooca",
"Imóvel"
],
numero_pessoas: 2
},
{
reference: "FAKE_0048",
updated_at: "2025-08-12T13:21:43.755Z",
title: "Imóvel de 120m² em excelente localização",
description: "Imóvel moderno com excelente custo-benefício. Localizado em bairro nobre com fácil acesso a comércios e serviços. Acabamentos de primeira linha.",
seo_slug: "duplex-temporada-ipanema",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"temporada",
"locacao"
],
valor_venda: 176161.52,
valor_locacao: 6089.75,
valor_diaria: 206.48,
valor_condominio: 219.67,
valor_iptu: 3070.3,
area_total: 32,
area_privativa: 127,
area_util: 398,
dormitorios: 2,
suites: 0,
banheiros: 2,
vagas_garagem: 4,
finalidade: "Mista",
tipo: "Apartamentos",
subtipo: "Duplex",
endereco_cep: "92811-602",
endereco_estado: "Santa Catarina",
endereco_cidade: "Itajaí",
endereco_bairro: "Ipanema",
endereco_logradouro: "Avenida Central",
endereco_numero: "2171",
endereco_zona: "Centro",
latitude: -23.54790079,
longitude: -46.66119864,
mobiliado: false,
caracteristicas: [
"Spa",
"Jardim",
"Churrasqueira",
"Área Gourmet",
"Portaria 24h"
],
destaque: false,
corretor_nome: "Patricia Souza",
condominio_nome: "Condomínio Botafogo Bay",
tags: [
"Duplex",
"Ipanema",
"Imóvel"
],
numero_pessoas: 7
},
{
reference: "FAKE_0074",
updated_at: "2025-08-12T13:21:43.760Z",
title: "Imóvel com 2 dormitórios para venda",
description: "Excelente imóvel localizado em excelente bairro, cidade. Imóvel com ótima localização e acabamento de qualidade. Características destacadas incluem Casa de Caseiro, Ar Condicionado Central, Cisterna. Agende sua visita!",
seo_slug: "garden-locacao-copacabana",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"locacao"
],
valor_venda: 4519135.51,
valor_locacao: 1722.05,
valor_diaria: 159.15,
valor_condominio: 305.06,
valor_iptu: 1601.99,
area_total: 346,
area_privativa: 147,
area_util: 382,
dormitorios: 3,
suites: 2,
banheiros: 1,
vagas_garagem: 1,
finalidade: "Comercial",
tipo: "Apartamentos",
subtipo: "Garden",
endereco_cep: "30718-482",
endereco_estado: "Ceará",
endereco_cidade: "Montes Claros",
endereco_bairro: "Copacabana",
endereco_logradouro: "Avenida João Pessoa",
endereco_numero: "3030",
endereco_zona: "Centro-Norte",
latitude: -23.51688453,
longitude: -46.58742062,
mobiliado: false,
caracteristicas: [
"Varanda",
"Estacionamento",
"Área de Serviço"
],
destaque: false,
corretor_nome: "Patricia Souza",
condominio_nome: "Condomínio Ingleses Beach",
tags: [
"Garden",
"Copacabana",
"Imóvel"
],
numero_pessoas: 1
},
{
reference: "FAKE_0078",
updated_at: "2025-08-12T13:21:43.761Z",
title: "Excelente Imóvel - 2 quartos, 120m²",
description: "Imóvel moderno com excelente custo-benefício. Localizado em bairro nobre com fácil acesso a comércios e serviços. Acabamentos de primeira linha.",
seo_slug: "garden-temporada-campeche",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"temporada"
],
valor_venda: 4880561.26,
valor_locacao: 13761.6,
valor_diaria: 186.8,
valor_condominio: 1809.79,
valor_iptu: 7859.67,
area_total: 418,
area_privativa: 284,
area_util: 240,
dormitorios: 2,
suites: 0,
banheiros: 1,
vagas_garagem: 1,
finalidade: "Industrial",
tipo: "Apartamentos",
subtipo: "Garden",
endereco_cep: "96995-993",
endereco_estado: "Ceará",
endereco_cidade: "Campos dos Goytacazes",
endereco_bairro: "Campeche",
endereco_logradouro: "Rua das Flores",
endereco_numero: "937",
endereco_zona: "Oeste",
latitude: -23.52996934,
longitude: -46.59233659,
mobiliado: false,
caracteristicas: [
"Papel de Parede",
"Suíte Master",
"Pet Place",
"Playground",
"Cozinha Americana",
"Portão Eletrônico"
],
destaque: false,
corretor_nome: "Ricardo Barbosa",
condominio_nome: "Residencial Vila Madalena",
tags: [
"Garden",
"Campeche",
"Imóvel"
],
numero_pessoas: 1
},
{
reference: "FAKE_0082",
updated_at: "2025-08-12T13:21:43.761Z",
title: "Imóvel premium com ótima localização",
description: "Oportunidade única! Imóvel com excelente localização em cidade. Imóvel pronto para morar com todas as comodidades necessárias.",
seo_slug: "duplex-locacao-sa-de",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920",
md: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1024",
sm: "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1920",
md: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1024",
sm: "https://images.unsplash.com/photo-1484154218962-a197022b5858?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
},
{
full: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1920",
md: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=1024",
sm: "https://images.unsplash.com/photo-1502672260266-1c1ef2d93688?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"locacao"
],
valor_venda: 1064221.78,
valor_locacao: 4786.78,
valor_diaria: 757.82,
valor_condominio: 1202.97,
valor_iptu: 1732.45,
area_total: 461,
area_privativa: 182,
area_util: 162,
dormitorios: 1,
suites: 2,
banheiros: 1,
vagas_garagem: 1,
finalidade: "Mista",
tipo: "Apartamentos",
subtipo: "Duplex",
endereco_cep: "34198-313",
endereco_estado: "Distrito Federal",
endereco_cidade: "Ribeirão das Neves",
endereco_bairro: "Saúde",
endereco_logradouro: "Avenida Beira Mar",
endereco_numero: "3838",
endereco_zona: "Centro-Norte",
latitude: -23.56196872,
longitude: -46.65647317,
mobiliado: false,
caracteristicas: [
"Spa",
"Molduras",
"Internet",
"Piso Laminado",
"Varanda",
"Granito"
],
destaque: false,
corretor_nome: "Fernanda Costa",
condominio_nome: "Condomínio Pinheiros Premium",
tags: [
"Duplex",
"Saúde",
"Imóvel"
],
numero_pessoas: 1
},
{
reference: "FAKE_0092",
updated_at: "2025-08-12T13:21:43.764Z",
title: "Imóvel de 120m² em excelente localização",
description: "Excelente imóvel localizado em excelente bairro, cidade. Imóvel com ótima localização e acabamento de qualidade. Características destacadas incluem Suíte Master, Quadra, Internet. Agende sua visita!",
seo_slug: "studio-temporada-barra-da-tijuca",
seo_title: "Imóvel em São Paulo - Centro",
seo_description: "Imóvel com 2 dormitórios, 120m²",
seo_keywords: "venda, aluguel, imóvel",
main_image: {
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480"
},
images: [
{
full: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920",
md: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1024",
sm: "https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=480",
cover: true
},
{
full: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1920",
md: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=1024",
sm: "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=480",
cover: false
}
],
videos: [
],
virtual_tours: [
],
documents: [
],
currency: "BRL",
unit_area: "m2",
unit_distance: "meters",
map_show_proximity: false,
operacao: [
"temporada"
],
valor_venda: 4477060.63,
valor_locacao: 2066.11,
valor_diaria: 776.02,
valor_condominio: 635.07,
valor_iptu: 2990.94,
area_total: 416,
area_privativa: 35,
area_util: 30,
dormitorios: 2,
suites: 1,
banheiros: 3,
vagas_garagem: 0,
finalidade: "Rural",
tipo: "Apartamentos",
subtipo: "Studio",
endereco_cep: "49609-797",
endereco_estado: "Minas Gerais",
endereco_cid