zillow package for a project. I've successfully executed a GetSearchResults() and gotten a response, but I don't exactly know how to process the response to get the information from it. For example, here is the log in the terminal from the call:
{ request:
{ address: '113 Cherry St',
citystatezip: 'Seattle, Washington' },
message: { text: 'Request successfully processed', code: '0' },
response: { results: { result: [Array] } } }
I see that I have an array called result which I presume has the information in it but how do I go about processing this?
Thanks