{"id":34202443,"url":"https://github.com/peppys/crib","last_synced_at":"2026-05-28T12:31:15.772Z","repository":{"id":44323765,"uuid":"450890320","full_name":"peppys/crib","owner":"peppys","description":"nice crib. how much?!","archived":false,"fork":false,"pushed_at":"2025-01-05T02:43:34.000Z","size":79,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-18T21:59:45.729Z","etag":null,"topics":["cli","golang","library","redfin","zillow"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peppys.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-01-22T17:40:33.000Z","updated_at":"2025-01-05T02:40:52.000Z","dependencies_parsed_at":"2024-06-21T12:14:09.434Z","dependency_job_id":"0083d5a7-6f48-46dd-94cf-de92541f2a52","html_url":"https://github.com/peppys/crib","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/peppys/crib","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peppys%2Fcrib","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peppys%2Fcrib/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peppys%2Fcrib/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peppys%2Fcrib/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peppys","download_url":"https://codeload.github.com/peppys/crib/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peppys%2Fcrib/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33609237,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","golang","library","redfin","zillow"],"created_at":"2025-12-15T18:59:27.646Z","updated_at":"2026-05-28T12:31:15.767Z","avatar_url":"https://github.com/peppys.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# crib\nnice crib\n\n## Installation\nNavigate to the [latest release](https://github.com/peppys/crib/releases/latest) and download the binary for your OS.  \nAssuming it's mac, here's how to install v2.0.2:\n```shell\n$ curl -L https://github.com/peppys/crib/releases/download/2.0.2/crib_Darwin_arm64.tar.gz --output crib.tar.gz \n\n$ tar -xzvf crib.tar.gz\n```\n\n## CLI Usage\n```shell\n$ ./crib value --help\nChecks the estimated valuation of your property\n\nUsage:\n  cli value [flags]\n\nFlags:\n  -a, --address string   Address of your crib\n  -f, --format string    Format of output (table/json/csv) (default \"table\")\n  -h, --help             help for value\n```\n\n### Machine readable formats\n\u003e note: machine readable formats display estimates in `cents` / `pennies`\n\n#### csv\n```shell\ncrib value -a '1443 devlin dr, los angeles, ca' --format csv\n ██████ ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n██      ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n ██████ ██   ██ ██ ██████  \n\nProvider,Estimate                                                                                                                                                                                                                       \nredfin,783541324\nzillow,756970000\n```\n\n#### json\n```shell\ncrib value -a '1443 devlin dr, los angeles, ca' --format json\n ██████ ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n██      ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n ██████ ██   ██ ██ ██████  \n\n[                                                                                                                                                                                                                          \n  {\n    \"provider\": \"redfin\",\n    \"value\": 783541324\n  },\n  {\n    \"provider\": \"zillow\",\n    \"value\": 756970000\n  }\n]\n```\n\njson format can be paired with [jq](https://github.com/jqlang/jq) to calculate average value:\n```shell\ncrib value -a '1443 devlin dr, los angeles, ca' --format json | jq 'map(.value) | add/length'\n ██████ ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n██      ██████  ██ ██████  \n██      ██   ██ ██ ██   ██ \n ██████ ██   ██ ██ ██████  \n\n770255662                         \n```\n\n## Library Usage\n```go\npackage main\n\nimport (\n\t\"github.com/peppys/crib/pkg/crib\"\n\t\"github.com/peppys/crib/pkg/crib/estimators\"\n\t\"log\"\n)\n\nfunc main() {\n\tc := crib.New(\n\t\tcrib.WithEstimators(\n\t\t\testimators.DefaultZillowEstimator(),\n\t\t\testimators.DefaultRedfinEstimator(),\n\t\t),\n\t)\n\n\testimates, err := c.Estimate(\"1443 delvin dr los angeles, ca\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tlog.Printf(\"found estimates: %+v\", estimates)\n}\n```\n\n## CLI Demo  \n![demo](demo.gif)  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeppys%2Fcrib","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeppys%2Fcrib","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeppys%2Fcrib/lists"}