Saved Searches

A Saved Search persists a Property Search query server-side so you can re-run it and receive only what changed. This is how you keep a synced copy of a list without diffing full result sets yourself.

POST/v1/PropertyPortfolio/SavedSearch/Create

Request attributes

  • Name
    search_name
    Type
    string
    Description

    A name for the saved search.

  • Name
    search_query
    Type
    string
    Description

    The Property Search query to persist.

  • Name
    list_size
    Type
    integer
    Description

    Expected size of the resulting list.

  • Name
    meta_data
    Type
    object
    Description

    Arbitrary metadata to store alongside the search, for your own filtering later.

Request

POST
/v1/PropertyPortfolio/SavedSearch/Create
curl -X POST https://api.realestateapi.com/v1/PropertyPortfolio/SavedSearch/Create \
  -H "x-api-key: $REALESTATEAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"search_name": "Austin absentee owners", "search_query": "{\"city\":\"Austin\",\"state\":\"TX\"}"}'

Was this page helpful?