{"id":42829918,"url":"https://github.com/euforic/opentable","last_synced_at":"2026-01-30T11:22:57.179Z","repository":{"id":57603930,"uuid":"97998766","full_name":"euforic/opentable","owner":"euforic","description":"Basic Opentable reservation parser in Golang. With an optional gRPC service and Node.js binding-ish module.","archived":false,"fork":false,"pushed_at":"2017-10-10T21:17:32.000Z","size":12351,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-20T04:44:07.534Z","etag":null,"topics":["golang","nodejs","opentable","parser"],"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/euforic.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}},"created_at":"2017-07-22T01:32:40.000Z","updated_at":"2017-10-10T21:19:38.000Z","dependencies_parsed_at":"2022-09-04T10:31:39.267Z","dependency_job_id":null,"html_url":"https://github.com/euforic/opentable","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/euforic/opentable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/euforic%2Fopentable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/euforic%2Fopentable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/euforic%2Fopentable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/euforic%2Fopentable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/euforic","download_url":"https://codeload.github.com/euforic/opentable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/euforic%2Fopentable/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28911821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T08:15:08.179Z","status":"ssl_error","status_checked_at":"2026-01-30T08:14:31.507Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["golang","nodejs","opentable","parser"],"created_at":"2026-01-30T11:22:56.463Z","updated_at":"2026-01-30T11:22:57.173Z","avatar_url":"https://github.com/euforic.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Opentable \n\nOpentable reservation scraper in golang with nodejs client and gRPC server / client.\nThis code base is meant to serve as an example for creating a simple scraper, gRPC service,\nand Golang \u003c=\u003e Node.js communication. Odds are this will not be maintained. :-(\n\n**Personal use only! May violate Opentable's [T\u0026C #13](https://www.opentable.com/legal/terms-and-conditions).**\n\n[![GoDoc](https://godoc.org/github.com/euforic/opentable?status.svg)](https://godoc.org/github.com/euforic/opentable)\n![](https://img.shields.io/badge/license-MIT-blue.svg)\n[![Go Report Card](https://goreportcard.com/badge/github.com/euforic/opentable)](https://goreportcard.com/report/github.com/euforic/opentable)\n\n## CLI Usage\n\n```bash\n$ opentable client search --direct  --people 2  --date_time 2017-08-11+15:30  --latitude 33.611746  --longitude -117.7487  --term italian  --sort Rating\n```\n\n## Nodejs Usage\n\n### Request\n\n```js\nlet client = new opentable.Client()\n\nclient.search({\n  covers: 2, // number of people attending\n  Limit: 200, // number of results to show\n  dateTime: new Date(), // date/time of reservation\n  term: 'italian', // search term used to narrow search\n  sort: 'Rating', // sort by [Distance, Popularity, Name, Rating]\n  latitude: '33.611746', // latitude of location to search\n  longitude: '-117.7487', // longitude of location to search\n}).then(data =\u003e {\n  console.log(JSON.stringify(data, null, \"  \"))\n}).catch(err =\u003e {\n  console.log(err)\n})\n```\n\n### Response\n\n```js\n{\n  \"350182\": {\n    \"ID\": \"350182\",\n    \"Name\": \"Alessa by Chef Pirozzi\",\n    \"URL\": \"https://opentable.com/restaurant/profile/350182?p=2\u0026sd=2017-08-02%2014%3A30\",\n    \"Recommended\": \"97%\",\n    \"Reservations\": [\n      {\n        \"Time\": \"2017-08-02T14:30:00Z\",\n        \"URL\": \"https://opentable.com/book/validate?rid=350182\u0026d=2017-08-02 14:30\u0026p=2\u0026pt=100\u0026ss=0\u0026sd=2017-08-02 14:30\u0026pofids=\u0026hash=490905459\"\n      },\n      //...\n    ]\n  },\n  //...\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuforic%2Fopentable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feuforic%2Fopentable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feuforic%2Fopentable/lists"}