Discover/myigloo.is API
live

myigloo.is APImyigloo.is

Retrieve Icelandic rental listings from myigloo.is via API. Access addresses, pricing, room counts, amenities, landlord info, and images for all active properties.

Endpoints
2
Updated
3mo ago
Try it
Maximum number of listings to scrape. If omitted, all listings are scraped.
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9f756afc-cd5c-4312-a811-9e9d272c14a9/scrape_listings?limit=2' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Retrieve rental listings from myigloo.is with full metadata and landlord information. Fetches paginated listing IDs then retrieves full details for each. Returns all active listings unless a limit is specified.

Input
ParamTypeDescription
limitintegerMaximum number of listings to scrape. If omitted, all listings are scraped.
Response
{
  "type": "object",
  "fields": {
    "total": "total number of listings available on the platform",
    "listings": "array of listing objects with full details including address, price, landlord, amenities, images, and rules"
  },
  "sample": {
    "data": {
      "total": 816,
      "listings": [
        {
          "id": 8825,
          "url": "https://myigloo.is/listings/8825",
          "size": "84.00",
          "price": "395000.00",
          "rooms": 3,
          "rules": {
            "id": 8822,
            "smoking": false,
            "max_people": 4,
            "sex_allowed": 0
          },
          "title": "Bergþórugata 3",
          "images": [
            "https://myigloo.is/media/public/listings/listing_8825/image.jpeg"
          ],
          "address": {
            "id": "7afb442c-737e-448b-ab4d-2168be0fd696",
            "city": {
              "id": 89,
              "name": "Reykjavík",
              "country": {
                "id": 1,
                "name": "Iceland",
                "name_short": "IS"
              }
            },
            "country": {
              "id": 1,
              "name": "Iceland",
              "name_short": "IS"
            },
            "location": null,
            "postal_code": {
              "id": 140,
              "code": "101"
            },
            "street_name": "Bergþórugata",
            "street_number": "3"
          },
          "bedrooms": 2,
          "currency": "ISK",
          "amenities": [
            "Ísskápur",
            "Örbylgjuofn",
            "Svalir"
          ],
          "bathrooms": 1,
          "utilities": [
            {
              "price": "0.00",
              "utility": {
                "id": 1,
                "tag": "HEAT-UTILITY",
                "name": "Hiti"
              },
              "paid_by_tenant": false
            }
          ],
          "description": "Leita að leigjendum fyrir yndislegu þriggja herbergja íbúðina mína...",
          "contact_info": {
            "name": "Freyja Sigurgísladóttir",
            "slug": "freyja-sigurgisladottir",
            "type": "organization",
            "uuid": "531dc1c6-33a3-4ec2-b413-4772edb4ec9c",
            "profile_url": "https://myigloo.is/organization/freyja-sigurgisladottir"
          },
          "published_at": "2026-05-13T23:07:17.487570Z",
          "landlord_name": "Freyja Sigurgísladóttir",
          "available_from": null,
          "price_formatted": "395,000 ISK"
        }
      ]
    },
    "status": "success"
  }
}

About the myigloo.is API

The myigloo.is API exposes 2 endpoints for accessing rental property data from Iceland's myigloo.is platform. The scrape_listings endpoint returns the full catalogue of active listings — including price, address, room count, images, and landlord details — while get_listing lets you fetch any single property by numeric ID with the same 13-field detail structure.

Endpoints and What They Return

The scrape_listings endpoint returns all active rental listings on myigloo.is as an array. Each listing object includes the property address (with street_name, street_number, city, postal_code, country, and a location field), price, size in square meters, rooms, bedrooms, title, an array of images, and a rules object covering smoking and max_people policies. The response also exposes a top-level total count of available listings on the platform. Use the optional limit parameter to cap how many listings are returned when you only need a sample.

Single-Listing Lookup

The get_listing endpoint accepts a listing_id string (e.g. '23340') and returns the full detail record for that property. The response shape mirrors what scrape_listings produces per item: id, url, size, price, rooms, bedrooms, title, images, address, and rules. If the ID does not correspond to an active listing, the endpoint returns a stale_input error with kind input_not_found rather than an empty result, making it straightforward to distinguish missing listings from data gaps.

Coverage and Scope

myigloo.is is an Icelandic rental marketplace. All listing data reflects what is publicly visible on the platform. The address object includes postal_code and country fields alongside street-level data, making it compatible with geocoding workflows. Price and room count fields are returned as strings or integers respectively, and may be null where the listing omits them.

Common use cases
  • Aggregate all active Icelandic rental listings for a market-overview dashboard using scrape_listings
  • Monitor price changes on specific properties by polling get_listing with known listing IDs over time
  • Build a rental comparison tool filtering by rooms, bedrooms, and price across returned listings
  • Geocode rental inventory by passing the address.location field to a mapping service
  • Enforce policy checks by reading the rules.smoking and rules.max_people fields per listing
  • Compile a dataset of listing images URLs for visual property catalogues or ML training sets
  • Validate whether a listing ID is still active by checking the stale_input response from get_listing
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 offer an official developer API?+
myigloo.is does not publish a documented public developer API or API documentation portal. This Parse API provides structured access to the same listing data available on the site.
What does the `rules` field in a listing contain?+
The rules field is an object with two keys: smoking (indicating whether smoking is permitted) and max_people (the occupancy limit). Either the whole object or individual keys may be null if the landlord did not specify those policies on the listing.
Does `scrape_listings` return landlord contact information?+
The endpoint description references landlord information in the listing objects. The explicitly documented per-listing fields are address, price, size, rooms, bedrooms, title, images, and rules. Landlord contact details beyond what appears in the listing record are not broken out as separate top-level fields in the current response shape. You can fork this API on Parse and revise it to surface additional landlord fields if the underlying data exposes them.
Can I filter `scrape_listings` results by city, price range, or number of rooms?+
The scrape_listings endpoint only accepts a limit parameter to cap the total number of results; server-side filtering by city, price, or room count is not currently supported. The API returns all active listings (or up to limit of them), and filtering must be applied client-side. You can fork this API on Parse and revise it to add filtered query parameters.
How fresh is the listing data returned by these endpoints?+
Each call to scrape_listings or get_listing reflects the current state of active listings on myigloo.is at the time of the request. There is no cached snapshot with a fixed timestamp — listings that have been removed will return a stale_input / input_not_found error from get_listing rather than stale data.
Page content last updated . Spec covers 2 endpoints from myigloo.is.
Related APIs in Real EstateSee all →
idealista.pt API
Search and filter property listings across Portugal by location, price, and size, then access detailed information about each property including its characteristics and pricing history. Monitor how property prices change over time to help you make informed decisions about buying or selling real estate.
cookcountyil.gov API
Search Cook County property tax records, look up court cases, find code violations, and get department contact information all in one place. Quickly access public records and government contacts without navigating multiple websites.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
beijing.anjuke.com API
Search Beijing real estate listings for second-hand homes and rentals, view detailed property information and price trends, and discover agents and community-specific listings. Get access to the Beijing house price index to track market movements and make informed decisions about property purchases or rentals.
58.com Housing API
Access real-time housing market data from 58.com (58同城), China's largest classifieds platform. Search house price trends across 31+ major Chinese cities at city, district, and neighborhood levels, and browse hot new property developments with prices, floor plans, and location details.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
myigloo.is API – Rental Listings & Landlord Data · Parse