Developer Documentation
Platform Overview
Authentication
API Services
Overview Accounts Accounts: Associations Accounts: Metadata Accounts: Profile Appstore: Users Broker Distributions Broker Tours Consumers Consumers: Linked Agents Contacts Contacts: Activity Contacts: Export Contacts: Tags Contacts: Portal Accounts Developers: Identities Developers: Keys Developers: Authorizations Developers: Billing Summary Developers: Change History Developers: Domains Developers: News Feed Webhooks Developers: Roles Developers: Syndications Developers: Templates Developers: Usage Detail Developers: Usage Summary Devices Flexmls: Email Links Flexmls: Listing Meta Origins Flexmls: Listing Meta Translations Flexmls: Listing Meta Field List Translations Flexmls: Listing Reports Flexmls: Mapping Layers Flexmls: Mapping Shapegen IDX IDX Links Listing Carts Listing Carts: Portal/VOW Carts Incomplete Listings Incomplete Listings: Documents Incomplete Listings: Documents Metadata Incomplete Listings: Document Uploads Incomplete Listings: Floor Plans Incomplete Listings: Floor Plans Metadata Incomplete Listings: Floor Plan Uploads Incomplete Listings: FloPlans Incomplete Listings: Photos Incomplete Listings: Photos Metadata Incomplete Listings: Photo Uploads Incomplete Listings: Rooms Incomplete Listings: Tickets Incomplete Listings: Units Incomplete Listings: Videos Incomplete Listings: Videos Metadata Incomplete Listings: Virtual Tours Incomplete Listings: Virtual Tours Metadata Listings Listings: Clusters Listings: Documents Listings: Documents Metadata Listings: Document Uploads Listings: Floor Plans Listings: Floor Plans Metadata Listings: Floor Plan Uploads Listings: FloPlans Listings: Historical Listings: History Listings: Notes Listings: Search Parameters Listings: Open Houses Listings: Photos Listings: Photos Metadata Listings: Photo Uploads Listings: Rental Calendar Listings: Rooms Listings: Rules Listings: Tour of Homes Listings: Tickets Listings: Units Listings: Validation Listings: Videos Listings: Videos Metadata Listings: Virtual Tours Listings: Virtual Tours Metadata Listing Meta: Custom Fields Listing Meta: Custom Field Groups Listing Meta: Field Order Listing Meta: Field Relations Listing Meta: Property Types Listing Meta: Rooms Listing Meta: Standard Fields Listing Meta: Units Registered Listings Market Statistics News Feed News Feed: Curation News Feed: Events News Feed: Metadata News Feed: Restrictions News Feed: Schedule News Feed: Settings News Feed: Templates Open Houses Overlays Overlays: Geometries Portals Preferences Saved Searches Saved Searches: Provided Saved Searches: Restrictions Saved Searches: Tags Search Templates: Quick Searches Search Templates: Views Search Templates: Sorts Shared Links System Info System Info: Languages System Info: Search Templates
Supporting Documentation
Examples
RESO Web API
RETS
FloPlan
Terms of Use

Listings: Floor Plans

The Listing Floor Plans service returns data about, and links to, floor plan images and files for a listing.

 
  1. Supported Roles
  2. Available Services
    1. Floor Plans
  3. Floor Plans Description
  4. Expansions
 

Supported Roles

Role Reads Writes Notes
IDX Yes No
Public Yes No
VOW Yes No
Portal Yes No
Private Yes No

More information about roles may be found here.

 

Available Services

FloorPlans

/<API Version>/listings/<Listing.Id>/floorplans
/<API Version>/listings/incomplete/<IncompleteListing.Id>/floorplans

HTTP Method Description Conditional Notes
GET Returns floor plans that are linked to the listing No
POST Returns HTTP 405 (Method Not Allowed) No Not implemented
PUT Returns HTTP 405 (Method Not Allowed) No Not implemented
DELETE Returns HTTP 405 (Method Not Allowed) No Not implemented

GET Request

Parameters:

 

GET Response

{
    "D": {
        "Success": true,
        "Results": [
                {
                  "Id": "20210524094350000084000000",
                  "MediaType": "png",
                  "Type": "all_in_one_png",
                  "Caption": "123 Ivy Lane",
                  "Uri": "http://images.dev.fbsdata.com/demomls/20241203163349869325000000-o.png",
                  "Uri300": "http://images.dev.fbsdata.com/demomls/20241203163349869325000000.png",
                  "ModificationTimestamp": "2020-12-04T14:00:12Z",
                  "CurrentPrivacy": "Public"
            }
        ]
    }
}
 
 

Individual FloorPlans

/<API Version>/listings/<Listing.Id>/floorplans/<Id>
/<API Version>/listings/incomplete/<IncompleteListing.Id>/floorplans/<Id>

HTTP Method Description Conditional Notes
GET Returns the specified floorplan No
POST Returns HTTP 405 (Method Not Allowed) No Not implemented
PUT Returns HTTP 405 (Method Not Allowed) No Not implemented
DELETE Returns HTTP 405 (Method Not Allowed) No Not implemented

GET Request

Parameters:

 

GET Response

{
    "D": {
        "Success": true,
        "Results": [
                {
                  "Id": "20210524094350000084000000",
                  "MediaType": "png",
                  "Type": "all_in_one_png",
                  "Caption": "123 Ivy Lane",
                  "Uri": "http://images.dev.fbsdata.com/demomls/20241203163349869325000000-o.png",
                  "Uri300": "http://images.dev.fbsdata.com/demomls/20241203163349869325000000.png",
                  "ModificationTimestamp": "2020-12-04T14:00:12Z",
                  "CurrentPrivacy": "Public"
            }
        ]
    }
}
 
 

Listing: Floor Plans Description

Attribute Data Type Description
Id Character The locally unique id for the Floor Plan record.
MediaType Character The Media Type as defined by IANA. Current supported types are: png.
Type Character The type of file. One of the following:
  • all_in_one_png: The large all-floors-in-one image.
Uri Character The URI the floor plan file.
Uri300 Character The URI the thumbnail image of floor plan file.
Caption Character A brief description of the floor plan.
ModificationTimestamp Timestamp The last time the floor plan was updated.
CurrentPrivacy Character Either Public or Private. Private floor plans will only be available to FBS products, and will only be available for private roles. Use this attribute to determine the active privacy level of the floor plan.
 

Expansions

None.