Green-Acres Data Parser & API
Green-Acres is a cross-border lifestyle property portal focused on France, Spain, Italy and Portugal, with listings auto-translated into 29 languages — and PropAPIS extracts its resale, land and rental listings with photo, geo and agent data through a single REST API. Reach international buyers of southern-European homes from one integration instead of parsing each country’s portals.
| Country | France / Spain / Italy / Portugal (+global lifestyle) |
|---|---|
| Type | Portal/Aggregator |
| Owner | Green-Acres |
| Listing types | resale, land, rental |
| Monthly visits | ~mid |
| Active listings | — (29-language listings) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.green-acres.com |
Platform Overview
Market Position
- A cross-border, lifestyle-focused portal for French, Spanish, Italian and Portuguese property
- Listings are auto-translated into 29 languages to reach international buyers (Homes Go Fast directory)
- Aggregates agency inventory across multiple southern-European markets
- One feed → multiple countries for cross-border buyer demand
Market Coverage
Geographic Coverage:
- France (its core market)
- Spain, Italy and Portugal
- Additional lifestyle/second-home markets
- Region- and town-level coverage
Property Types:
- Houses, villas and country homes
- Apartments
- Land and building plots
- Rural and lifestyle properties
Data Availability
Green-Acres exposes standard residential fields plus country and language metadata — price, photos, agent and geo — across 29 translated languages, at Medium anti-bot difficulty with no public API, which PropAPIS handles for you.
Listing Categories:
- Buy: Resale homes and villas
- Land: Building plots and rural land
- Rent: Long-term rentals where listed
Data Fields Available
PropAPIS extracts structured data from each Green-Acres listing:
Property Information
- Address: Town, region and country
- Price: Sale price or rent
- Bedrooms and Bathrooms
- Property Type: House, villa, apartment, land
- Area: Floor area and land/plot size
- Country and Language metadata
Listing Details
- Description: Full listing text (multilingual)
- Photos: Image URLs
- Features and amenities
- Listed / Updated date
Agent Information
- Agency: Agency name and branch
- Agent: Listing agent name
- Agent Contact: Phone/email where published
Location & Market Data
- Town, Region and Country
- Coordinates: Latitude and longitude
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a Green-Acres listing by URL or ID
property_data = api.platforms.green_acres.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: EUR {property_data.price:,}")
print(f"Country: {property_data.country}")Search Listings
# Search Green-Acres listings across countries
listings = api.platforms.green_acres.search(
country='France',
region='Provence',
purpose='for-sale',
property_type='Villa'
)
for listing in listings[:10]:
print(f"{listing.title} - EUR {listing.price:,}")
print(f" {listing.country} | {listing.region}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Green-Acres listings in France
listings = api.platforms.green_acres.search(country='France', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - EUR {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Green-Acres listings in France
const listings = await api.platforms.greenAcres.search({
country: 'France',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - EUR ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/green-acres/search?country=France&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"