-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stingray documentation #16
Comments
Hi - did you ever find a solution for accessing the MLS data? I am working on a project where I need to pull similar MLS data. Thanks in advance |
Hi @bnberns. Here is a snippet from my code. It's a little messy, but works. You can ignore The big issue with all this is that I had to manually read through payloads to make sure I was bringing in all the correct parts of the returned json. But, this seems to work.
I have a wonky workflow for this where I use multithreading to pull in the data. I'd refashion this for your own work:
Then you'll want to pivot the data:
|
The current Also, checkout RedfinPlus on GitHub for further documentation (its not the best but its there) |
Not an issue with the package, but I'm trying to track down the documentation for the Stingray API (like the kinds of requests I can make with it, and how to structure them) and there's basically nothing online.
As an example, I found a stackoverflow question regarding stingray's API where one can download a CSV of searches:
https://stackoverflow.com/questions/73200792/convert-redfins-region-id-to-a-zip-code
This request doesn't seem to be part of this package, which is totally fine, but it'd be cool to understand how to access it.
In short, what I am trying to do is a large pull of MLS data (specifically characteristics of a property, such as bed/bath, exterior condition - all stuff in the
below_the_fold
part of the package) and I am curious if there are easier ways to grab that information than my current, non-scalable solution which is to iterate through each of the properties I am interested in.Ideally Redfin would just let me export this data, but I don't think they want to do that even if it is publicly available via webscraping and APIs!
The text was updated successfully, but these errors were encountered: