Street

Setting up an import from Street

This page contains information specific to Street. For a general guide on setting up a property import please see our 'Creating your first property import' guide.

Obtain your API key from your Street account

You will need to generate an API key to enter into WordPress. To do this, you’ll need to log into your Street customer area.

Once logged into Street, navigate to Settings (left hand menu) > Applications (left hand menu at the bottom of the page) > ‘Create new application form’

Complete the application form, ensuring you select ‘Property Feed API’ for the API Token Scope.

This will generate an API key which can be used in the next step:

Set up the import in Property Hive

When creating an import from Reapit Foundations, you'll be presented with the following fields:

API Key - Enter the API Key obtained using the steps above.

API Base URL - Sometimes when testing a new feed this will differ. This can be left unless otherwise stated by Street.

Only import updated properties - To ensure feeds run quicker and more efficiently you can tick this option to only import properties that have changed since the last time an import ran.

Replace default enquiry button with Street 'Book Viewing' URL - Check this if you want to redirect users to the viewing form powered by Street.

Code snippets

Import sold properties

By default, only properties that are for sale or sold STC are imported from Street.

To import sold properties too you can use the propertyhive_street_sales_statuses filter to request additional statuses:

add_filter( 'propertyhive_street_sales_statuses', 'customise_street_sale_statuses' );
function customise_street_sale_statuses($statuses)
{
    $statuses[] = 'exchanged';
    $statuses[] = 'completed';
    return $statuses;
}