Developer Integration Guide

Integrate HomeVisto property verification requests into your real estate website or application. Our SEO-friendly embed solution works with any platform.

What is HomeVisto?

HomeVisto is a property verification marketplace that connects remote property seekers with local Scouts who perform live, GPS-verified video tours. Perfect for real estate websites, property listing platforms, and relocation services.

  • Live video property tours with real-time Q&A
  • GPS verification ensures Scout is on-site
  • Objective data: internet speed tests, noise levels
  • Average cost $50 USD, 2-hour response time

Embed Button

Add a branded HomeVisto button to your website. The button is a standard HTML anchor link that works without JavaScript (SEO-friendly). Our embed script enhances it with HomeVisto branding and styling.

HTML Code

<!-- HomeVisto Embed Button -->
<a href="https://homevisto.com/missions/new?title=Verify%20Property&address=123%20Main%20St%2C%20London"
   data-homevisto-button
   data-lang="en"
   data-size="default">
  Request Property Verification
</a>
<script src="https://homevisto.com/embed.js" async></script>

Note: Coordinates (lat/lng) are optional. If only an address is provided, HomeVisto will automatically geocode it to determine the location on the map.

Display Attributes

AttributeRequiredDescription
data-homevisto-buttonYesRequired. Marks this link as a HomeVisto button
data-langNoLanguage code: en, de, fr, it, es, pt, zh, hi, ar (default: en)
data-sizeNoButton size: compact, default, or large (default: default)
data-show-taglineNoShow tagline below button: true or false (default: true)

URL Parameters

Pass property data via URL parameters to pre-fill the mission form. All parameters are optional. Address will be auto-geocoded if coordinates are not provided.

ParameterTypeDescription
titlestringMission title (e.g., Verify 2BR Apartment)
descriptionstringAdditional details about what to verify
addressstringProperty address (URL encoded) - will be auto-geocoded
latnumberProperty latitude (optional - auto-geocoded from address)
lngnumberProperty longitude (optional - auto-geocoded from address)
bountynumberBounty amount in USD (minimum 10)
urgencystringPriority level: standard, urgent, or immediate
checkliststringComma-separated verification items

Example URLs

With address only (coordinates auto-geocoded):

https://homevisto.com/missions/new?title=Verify%202BR%20Apartment&address=123%20Main%20St%2C%20London&bounty=75

With explicit coordinates:

https://homevisto.com/missions/new?title=Verify%202BR%20Apartment&lat=51.5074&lng=-0.1278&address=123%20Main%20St&bounty=75

Supported Languages

HomeVisto supports 9 languages. Set the data-lang attribute to display the button and tagline in the user's language.

enEnglish
deDeutsch
frFrancais
itItaliano
esEspanol
pt-BRPortugues
zh中文
hiहिन्दी
arالعربية

Using Different Languages

Set the data-lang attribute on your button element to display the button text and tagline in the selected language. Use locale-prefixed URLs for the full localized experience.

German Button Example

<a href="https://homevisto.com/de/missions/new?title=Wohnung%20überprüfen"
   data-homevisto-button
   data-lang="de">
  Immobilienverifikation anfordern
</a>
<script src="https://homevisto.com/embed.js" async></script>

Auto-Detect Browser Language

<a href="https://homevisto.com/missions/new"
   id="homevisto-btn"
   data-homevisto-button>
  Request Property Verification
</a>
<script>
  // Auto-detect language from browser
  const lang = navigator.language.split('-')[0];
  const supported = ['en','de','fr','it','es','pt','zh','hi','ar'];
  const btn = document.getElementById('homevisto-btn');
  btn.dataset.lang = supported.includes(lang) ? lang : 'en';
</script>
<script src="https://homevisto.com/embed.js" async></script>

Button Text by Language

LanguageButton TextTagline
enRequest Property VerificationPowered by HomeVisto
deImmobilienverifikation anfordernBereitgestellt von HomeVisto
frDemander une vérificationPropulsé par HomeVisto
itRichiedi verifica immobileOfferto da HomeVisto
esSolicitar verificaciónDesarrollado por HomeVisto
pt-BRSolicitar verificaçãoDesenvolvido por HomeVisto
zh请求房产验证由 HomeVisto 提供支持
hiसंपत्ति सत्यापन का अनुरोध करेंHomeVisto द्वारा संचालित
arطلب التحقق من العقارمدعوم من HomeVisto

API Endpoints for AI Agents

Programmatic access to this documentation for AI agents, bots, and automated systems.

Plain Text (Markdown)

Human-readable markdown documentation

/api/docs/integration
JSON Format

Structured data for programmatic access

/api/docs/integration?format=json

Ready to Integrate?

Start adding property verification to your listings today.

Try It Now

HomeVisto Developer Integration Documentation. HomeVisto is a property verification marketplace connecting remote property seekers with local Scouts who perform live, GPS-verified video tours. This page documents how developers can integrate HomeVisto property verification requests into their real estate websites and applications. The embed script (homevisto.com/embed.js) transforms standard HTML anchor links into branded HomeVisto buttons while maintaining full SEO compatibility. All property data is passed via URL parameters (title, lat, lng, address, bounty, urgency, checklist) ensuring search engine crawlers can follow and index destination links. Supported languages include English, German, French, Italian, Spanish, Portuguese, Chinese, Hindi, and Arabic. Average verification cost is $50 USD with 2-hour average response time. Platform fee is 30%, Scout receives 70% of bounty.