Discover/MyIgloo API
live

MyIgloo APImyigloo.is

Access rental listings and landlord details from myigloo.is. Retrieve price, address, amenities, images, and contact info via 2 structured endpoints.

Endpoint health
verified 3d ago
get_listing
scrape_listings
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the MyIgloo API?

The MyIgloo.is API provides access to rental property listings from Iceland's myigloo.is platform across 2 endpoints. The scrape_listings endpoint returns all active listings with full metadata — address, price, rooms, amenities, images, and landlord contact — while get_listing fetches the same detail set for a single listing by its numeric ID. Response objects include up to 15 structured fields per listing.

Try it
Maximum number of listings to return. If omitted, all active listings are returned.
api.parse.bot/scraper/9f756afc-cd5c-4312-a811-9e9d272c14a9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9f756afc-cd5c-4312-a811-9e9d272c14a9/scrape_listings?limit=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace myigloo-is-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: MyIgloo rental listings SDK — browse and inspect Icelandic rentals."""
from parse_apis.myigloo_rental_scraper_api import MyIgloo, Listing, ListingNotFound

client = MyIgloo()

# List active rental listings (limit caps total items fetched).
for listing in client.listings.list(limit=3):
    print(listing.address.street_name, listing.address.city, listing.price_formatted)

# Drill into one listing for full detail.
listing = client.listings.list(limit=1).first()
if listing:
    print(listing.id, listing.size, listing.bedrooms, listing.amenities)

# Fetch a specific listing by ID; handle not-found gracefully.
try:
    detail = client.listings.get(listing_id="23913")
    print(detail.landlord_name, detail.contact_info.name, detail.contact_info.profile_url)
except ListingNotFound as exc:
    print(f"Listing gone: {exc}")

print("exercised: listings.list / listings.get / ListingNotFound error handling")
All endpoints · 2 totalmissing one? ·

Retrieve rental listings from myigloo.is with full metadata and landlord information. Fetches paginated listing IDs then retrieves full details for each. Each listing includes address, price, landlord contact, amenities, images, and rules. Returns all active listings unless a limit is specified. Makes one API call per listing for detail hydration, so large limits are slow.

Input
ParamTypeDescription
limitintegerMaximum number of listings to return. If omitted, all active listings are returned.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of all listings available on the platform",
    "listings": "array of listing objects with full details including address, price, landlord, amenities, images, and rules"
  }
}

About the MyIgloo API

Endpoints and Coverage

The API exposes two endpoints covering the full active inventory on myigloo.is. scrape_listings accepts an optional limit integer parameter; omitting it returns all active listings available on the platform. The response includes a total count alongside a listings array where each object carries address details, pricing, room counts, bedroom counts, size in square meters, images, and rules.

Listing Detail Fields

get_listing takes a required listing_id string (e.g. '23340') and returns a single listing object. Key fields include id, url (the canonical listing URL on myigloo.is), price, size, rooms, bedrooms, title, and an images array of URLs. The address object is structured with discrete sub-fields: street_name, street_number, city, postal_code, country, and a location field for geographic coordinates. The rules object, when present, includes smoking and max_people values. If a requested listing ID does not exist, the endpoint returns a stale_input error with kind input_not_found.

Data Shape and Nullability

Several fields — including price, rooms, bedrooms, title, and rules — can be null when the listing does not include that information. Consumers should handle null values on these fields. The images field is always an array, though it may be empty. size is returned as a string rather than a numeric type.

Reliability & maintenanceVerified

The MyIgloo API is a managed, monitored endpoint for myigloo.is — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when myigloo.is changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official myigloo.is API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate all active Icelandic rental listings into a property search index using scrape_listings
  • Monitor price changes for specific properties by polling get_listing with known listing IDs
  • Build a map of available rentals using the structured address.location coordinates returned per listing
  • Filter listings by room or bedroom count using the rooms and bedrooms fields from scrape_listings
  • Collect landlord contact information at scale for market research or outreach tooling
  • Analyze rental rule patterns (smoking policies, occupancy limits) across the Icelandic market using the rules object
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does myigloo.is have an official developer API?+
MyIgloo.is does not publish a public developer API or documented data access program. This Parse API is the structured way to access listing data from the platform.
What does `scrape_listings` return when no `limit` is set?+
It returns all currently active listings on myigloo.is along with a total integer reflecting the full count available. Each listing object in the listings array includes address, price, size, rooms, bedrooms, images, rules, and a listing URL.
Does the API expose rental history or past listings that are no longer active?+
Not currently. Both endpoints cover active listings only — scrape_listings returns current inventory and get_listing returns a stale_input error for IDs that no longer exist. You can fork this API on Parse and revise it to add an endpoint targeting archived or expired listing data if that data is accessible on the platform.
Are search or filter parameters supported in `scrape_listings`?+
The only supported input is limit, which caps the number of listings returned. Filtering by city, price range, or room count is not available as a server-side parameter. You can fork this API on Parse and revise it to add filter parameters if the underlying platform exposes filtered views.
How should I handle null fields in the listing response?+
Fields like price, rooms, bedrooms, title, and rules are nullable — they return null when the listing omits that information. The images field is always an array but may be empty. The size field is a string, not a number, so numeric comparisons require parsing on the client side.
Page content last updated . Spec covers 2 endpoints from myigloo.is.
Related APIs in Real EstateSee all →
ingatlan.com API
Search real estate listings and development projects on ingatlan.com to find properties with detailed information like prices, descriptions, and project details. Get comprehensive data on available homes and construction projects even when direct access is restricted.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.
realtor.ca API
Search Canadian real estate listings and retrieve detailed property information including photos, prices, descriptions, and agent details from REALTOR.ca. Browse available properties with comprehensive listing data across Canada.
immoscout24.ch API
Search residential and commercial property listings on ImmoScout24 by location, price, and room count, then access detailed information including images, company details, and property types. Find your ideal property with comprehensive filtering options and complete listing data all in one place.
pararius.com API
Search and browse rental property listings on Pararius.com. Filter by city, price, size, and furnishing; retrieve full property details; look up listings by estate agent; and autocomplete location queries.
immoscout24.de API
Search and browse real estate listings from Germany's leading property portal Immobilienscout24. Filter by location, property type, and price range, and retrieve comprehensive listing details including size, amenities, contact information, and more.
vrbo.com API
Search and browse vacation rental listings on Vrbo by location, date range, and guest count. Retrieve detailed information about specific properties including descriptions, amenities, photos, pricing, guest reviews, and availability — everything needed to compare rental options in one place.
streeteasy.com API
Search and browse NYC apartment rentals to find detailed property information including photos, amenities, pricing, and direct contact details for brokers and agents. Filter through available listings and access comprehensive rental data to help you discover your next home in New York City.