├── data-and-ai └── data-engineer │ ├── scala │ ├── project │ │ └── build.properties │ ├── build.sbt │ └── src │ │ └── main │ │ └── scala │ │ └── Main.scala │ ├── python │ ├── file-splitter.sh │ └── file_splitter │ │ └── __main__.py │ ├── README.md │ └── .gitignore ├── Product-Research ├── Test.UI.Engineer.ProductResearch.md └── restaurant-search-results.md ├── Test.WebUI.Engineering.md ├── Tech.Associate.Engineer.md ├── Test.DevOps.Engineer.md ├── Test.SOC.Engineer.md ├── README.md ├── Test.Automation.Engineer.md └── LICENSE /data-and-ai/data-engineer/scala/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 1.2.8 -------------------------------------------------------------------------------- /data-and-ai/data-engineer/python/file-splitter.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | python3 -m file_splitter $@ -------------------------------------------------------------------------------- /data-and-ai/data-engineer/scala/build.sbt: -------------------------------------------------------------------------------- 1 | name := "scala" 2 | 3 | version := "0.1" 4 | 5 | scalaVersion := "2.12.8" 6 | 7 | 8 | libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.1" 9 | -------------------------------------------------------------------------------- /data-and-ai/data-engineer/python/file_splitter/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | 4 | def main(): 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument('--input-file', type=str, required=True) 7 | parser.add_argument('--output-dir', type=str, required=True) 8 | parser.add_argument('--max-bytes', type=int, required=True) 9 | parser.add_argument('--max-lines', type=int, required=True) 10 | 11 | args = parser.parse_args() 12 | 13 | print(args.input_file) 14 | print(args.output_dir) 15 | print(args.max_bytes) 16 | print(args.max_lines) 17 | 18 | 19 | if __name__ == '__main__': 20 | main() 21 | 22 | -------------------------------------------------------------------------------- /data-and-ai/data-engineer/scala/src/main/scala/Main.scala: -------------------------------------------------------------------------------- 1 | case class Config( 2 | inputFile: String = "", 3 | outputDir: String = "", 4 | maxLines: Int = -1, 5 | maxBytes: Int = -1) 6 | 7 | object Main extends App { 8 | 9 | val parser = new scopt.OptionParser[Config]("scopt") { 10 | head("scopt", "3.x") 11 | 12 | opt[String]("input-file").action((x, c) => 13 | c.copy(inputFile = x)) 14 | 15 | opt[String]("output-dir").required() 16 | .action((x, c) => c.copy(outputDir = x)) 17 | 18 | opt[Int]("max-lines").required() 19 | .action((x, c) => c.copy(maxLines = x)) 20 | 21 | opt[Int]("max-bytes").required() 22 | .action((x, c) => c.copy(maxLines = x)) 23 | 24 | } 25 | 26 | val parsed = parser.parse(args, Config()) match { 27 | case Some(config) => 28 | println(config) 29 | ??? 30 | case None => 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /Product-Research/Test.UI.Engineer.ProductResearch.md: -------------------------------------------------------------------------------- 1 | UI Engineer (Product Research) Tech Test 2 | ======================================== 3 | 4 | Thank you for taking the time to do our technical test. It consists of two parts: 5 | 6 | * [A coding test](#coding-test) 7 | * [A few questions](#technical-questions) 8 | 9 | In order to avoid bounced emails we would like you to submit your results by uploading the relevant zip file to a shared **Google Drive** folder. In order to obtain the URL for this folder, please supply your **Gmail** or **Google-based email address** to either your agent or the Just Eat member of staff who assigned you the test. 10 | 11 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 12 | 13 | 1. one folder containing the coding test 14 | 2. a single markdown file with the answers to the questions 15 | 16 | ## Coding Test 17 | 18 | The test is simple, just: 19 | 20 | * Create an HTML file (and any additional CSS/JavaScript files you need) that does something with the JSON in [this sample of restaurant search results](restaurant-search-results.md). 21 | 22 | The test is open-ended, but please don't feel you need to spend more than an hour on it. We're looking for code that is readable and that shows off your abilities, but most of all we want to see something interesting. 23 | 24 | ## Questions 25 | 26 | * What would you add to your test if you had more time? 27 | * What's the best thing added to JavaScript in the last few years? 28 | * What's a feature you wish existed when you're ordering takeaway online? 29 | * What JSON would describe you? 30 | 31 | Thanks for your time, we look forward to hearing from you! 32 | -------------------------------------------------------------------------------- /Test.WebUI.Engineering.md: -------------------------------------------------------------------------------- 1 | 2 | Web UI Tech Test 3 | ============ 4 | 5 | Thank you for taking the time to do our technical test. It consists of two parts: 6 | 7 | * [A coding test](#coding-test) 8 | * [A few technical questions](#technical-questions) 9 | 10 | In order to avoid bounced emails we would like you to submit your results by uploading the relevant zip file to a shared **Google Drive** folder. In order to obtain the URL for this folder, please supply your **Gmail** or **Google-based email address** to either your agent or the Just Eat member of staff who assigned you the test. 11 | 12 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 13 | 14 | 1. one folder containing the coding test 15 | 2. a single markdown file with the answers to the technical questions 16 | 17 | ## Coding Test 18 | 19 | * Create an HTML file that has a login form with a username and password. Use semantic, accessible and valid mark-up. 20 | * Style the form so that labels are to the left of the fields and inputs are to the right of the fields. 21 | * Write script that defines a `FormValidator` constructor with methods on the prototype to validate and display error messages for invalid username/password. It only has to check whether the fields are blank or not. 22 | * Use external scripts and CSS files. 23 | * Don't pollute the global object (Only one should be required for the namespace you choose) 24 | * Test drive the code via unit tests (Jasmine or an equivalent) 25 | * Should work in IE11+ as well as more modern browsers. 26 | 27 | ## Technical Questions 28 | 29 | * Did you have time to complete the coding test? What would you add to your solution if you had more time? 30 | * What's your favourite programming language? Why? 31 | * List a few of your preferred JavaScript frameworks (also let us know in which situations you would choose to use/not use them) 32 | * Please describe yourself using either XML or JSON. 33 | 34 | Thanks for your time, we look forward to hearing from you! 35 | -------------------------------------------------------------------------------- /data-and-ai/data-engineer/README.md: -------------------------------------------------------------------------------- 1 | # Just Eat Data Engineer Recruitment Test 2 | Thank you for taking the time to apply to Just Eat as a Data Engineer! 3 | 4 | ## Process 5 | 6 | The next stage of the interview process involves some live code pairing. 7 | To prepare for this, you have 2 options, pick which ever option you are most comfortable with: 8 | 9 | ### 1. Prepare only 10 | - Read and understand the [Problem Statement](#problem-statement) 11 | - Set up your favourite IDE with the sample [scala](./scala) or [python](./python) code. 12 | - Make sure you know how the code works, it compiles and you know how to run it with different arguments 13 | - Think about how you plan on implementing a solution to the problem 14 | 15 | In the code pairing session, we will start coding the solution 16 | 17 | ### 2. Spend an hour or two implementing a solution 18 | - Complete all the above steps in '1. Prepare only' 19 | - Start coding your solution 20 | 21 | In the code pairing session, we will continue coding or add a new feature 22 | 23 | 24 | 25 | ## Problem Statement 26 | 27 | Your task is to write a command line application that splits a single large csv file into many smaller files. 28 | 29 | If your program was invoked as follows, it should read the input file `path/to/file`, 30 | and split it into many output files in the directory `path/to/dir`. 31 | None of the files in the output directory should be greater than 500 bytes in size or 100 lines long. 32 | 33 | ```bash 34 | ./file-splitter --input-file path/to/file --output-dir path/to/dir --max-bytes 500 --max-lines 100 35 | ``` 36 | 37 | The output file names should have a part number appended to it. 38 | For example, with an input file `large-data.csv` the output directory would contain: 39 | 40 | ``` 41 | output-dir/large-data-part0.csv 42 | output-dir/large-data-part1.csv 43 | output-dir/large-data-part2.csv 44 | ... 45 | ``` 46 | 47 | 48 | ## Top tips 49 | 50 | At Just Eat we value code that is functional, simple to read and review, and demonstrates best practice. 51 | 52 | You should complete this assignment in Scala or Python, unless instructed otherwise. 53 | Sample projects with the arguments parsed are provided. 54 | If you would like to use a different method for argument parsing this is fine. 55 | 56 | Think about the libraries and frameworks you intend to use. Are they suitable for the scale of this problem? 57 | 58 | We judge based on the following things: 59 | * Code readability 60 | * Code well architected / separated 61 | * Testing of key parts 62 | * Code maintainability, can it be extended 63 | * Code performance 64 | -------------------------------------------------------------------------------- /Tech.Associate.Engineer.md: -------------------------------------------------------------------------------- 1 | # Just Eat Associate Engineer Recruitment Test 2 | 3 | Thank you for taking the time to do our technical test. It consists of two parts: 4 | 5 | 1. [Technical test](#technical-test) 6 | 2. [Technical questions](#technical-questions) 7 | 8 | Please don't publish your solution as a public repository, but submit your results by uploading the relevant zip file to a shared Google Drive folder instead. 9 | In order to obtain the URL for this folder, please supply your Gmail or Google-based email address to either your recruitment contact or the Just Eat member of staff who assigned you the test. 10 | 11 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 12 | 13 | 1. A single Markdown file with the answers to the technical questions 14 | 1. A folder containing the technical test (please try not to include files like library dependencies) 15 | 16 | ### Technical Test 17 | 18 | Just Eat has a public API available at https://uk.api.just-eat.io/ that you will use to get restaurant information. 19 | 20 | As an example, https://uk.api.just-eat.io/restaurants/bypostcode/ar511aa returns a list of restaurants that deliver to AR51 1AA, including some basic restaurant information. 21 | 22 | The task is to write some code that accepts a postcode as a parameter and then returns a list of restaurants for that postcode. The application should then display the following information about each restaurant returned in the results: 23 | 24 | - Name 25 | - Rating 26 | 27 | The input and display can be on a web page or a terminal/console. 28 | 29 | ### The API Call 30 | - URL: `https://uk.api.just-eat.io` 31 | - Endpoint: `/restaurants/bypostcode/{postcode}` 32 | - Method: `GET` 33 | 34 | #### Tasks 35 | 36 | 1. As a customer, when I input my postcode, then I am shown a list of restaurants for that postcode 37 | 2. As a customer, when I input no postcode, I am shown no results 38 | 3. As a customer, when I input an invalid postcode, I am shown no results 39 | 40 | 41 | #### Platform Choice 42 | 43 | Feel free to use any programming language, libraries and frameworks you are experienced with. 44 | 45 | #### Expectations 46 | 47 | - Please do not spend too much time on UI design. We would happily receive a test which simply outputs a text-based list or restaurant names and ratings in a browser. 48 | - We do not require extensive user input and error handling. Just ensure your solution doesn't fall over if a customer were to type in an empty postcode. 49 | - A JavaScript and HTML file which we can run in your preferred web browser is an acceptable solution. 50 | 51 | ## Technical Questions 52 | 53 | Please answer the following questions and include them in the Markdown file uploaded with your technical test 54 | 55 | 1. How long did you spend on the technical test? 56 | 2. What would you add to your solution if you had more time? 57 | 3. What do you think you could research or learn more about to help you build a better solution, given more time? 58 | 4. How would you go about researching or learning the above? 59 | 60 | -------------------------------------------------------------------------------- /data-and-ai/data-engineer/.gitignore: -------------------------------------------------------------------------------- 1 | #### joe made this: http://goel.io/joe 2 | 3 | #### scala #### 4 | *.class 5 | *.log 6 | 7 | .DS_Store 8 | 9 | #### playframework #### 10 | # Ignore Play! working directory # 11 | bin/ 12 | /db 13 | .eclipse 14 | /lib/ 15 | /logs/ 16 | /modules 17 | /project/target/ 18 | /target 19 | tmp/ 20 | test-result 21 | server.pid 22 | *.eml 23 | /dist/ 24 | .cache 25 | 26 | 27 | #### java #### 28 | # Compiled class file 29 | *.class 30 | 31 | # Log file 32 | *.log 33 | 34 | # BlueJ files 35 | *.ctxt 36 | 37 | # Mobile Tools for Java (J2ME) 38 | .mtj.tmp/ 39 | 40 | # Package Files # 41 | *.jar 42 | *.war 43 | *.ear 44 | *.zip 45 | *.tar.gz 46 | *.rar 47 | 48 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 49 | hs_err_pid* 50 | 51 | 52 | #### sbt #### 53 | # Simple Build Tool 54 | # http://www.scala-sbt.org/release/docs/Getting-Started/Directories.html#configuring-version-control 55 | 56 | dist/* 57 | target/ 58 | lib_managed/ 59 | src_managed/ 60 | project/boot/ 61 | project/plugins/project/ 62 | .history 63 | .cache 64 | .lib/ 65 | 66 | 67 | #### jetbrains #### 68 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm 69 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 70 | 71 | # User-specific stuff: 72 | .idea/**/workspace.xml 73 | .idea/**/tasks.xml 74 | .idea/dictionaries 75 | 76 | # Sensitive or high-churn files: 77 | .idea/**/dataSources/ 78 | .idea/**/dataSources.ids 79 | .idea/**/dataSources.xml 80 | .idea/**/dataSources.local.xml 81 | .idea/**/sqlDataSources.xml 82 | .idea/**/dynamic.xml 83 | .idea/**/uiDesigner.xml 84 | 85 | # Gradle: 86 | .idea/**/gradle.xml 87 | .idea/**/libraries 88 | 89 | # CMake 90 | cmake-build-debug/ 91 | 92 | # Mongo Explorer plugin: 93 | .idea/**/mongoSettings.xml 94 | 95 | ## File-based project format: 96 | *.iws 97 | 98 | ## Plugin-specific files: 99 | 100 | # IntelliJ 101 | /out/ 102 | 103 | # mpeltonen/sbt-idea plugin 104 | .idea_modules/ 105 | 106 | .idea/ 107 | 108 | *.sc 109 | 110 | # Helm stuff 111 | repo/ 112 | 113 | # Terraform 114 | .terraform 115 | 116 | 117 | ### PYTHON ### 118 | # Byte-compiled / optimized / DLL files 119 | __pycache__/ 120 | *.py[cod] 121 | *$py.class 122 | 123 | # C extensions 124 | *.so 125 | 126 | # Distribution / packaging 127 | .Python 128 | env/ 129 | build/ 130 | develop-eggs/ 131 | dist/ 132 | downloads/ 133 | eggs/ 134 | .eggs/ 135 | lib/ 136 | lib64/ 137 | parts/ 138 | sdist/ 139 | var/ 140 | wheels/ 141 | *.egg-info/ 142 | .installed.cfg 143 | *.egg 144 | 145 | # PyInstaller 146 | # Usually these files are written by a python script from a template 147 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 148 | *.manifest 149 | *.spec 150 | 151 | # Installer logs 152 | pip-log.txt 153 | pip-delete-this-directory.txt 154 | 155 | # Unit test / coverage reports 156 | htmlcov/ 157 | .tox/ 158 | .coverage 159 | .coverage.* 160 | .cache 161 | nosetests.xml 162 | coverage.xml 163 | *.cover 164 | .hypothesis/ 165 | -------------------------------------------------------------------------------- /Test.DevOps.Engineer.md: -------------------------------------------------------------------------------- 1 | Just Eat Test DevOps Engineer Recruitment Test 2 | ================================== 3 | 4 | Thank you for taking the time to do our technical test. It consists of two parts: 5 | 6 | * [A technical test](#technical-test) 7 | * [A few technical questions](#technical-questions) 8 | 9 | In order to avoid bounced emails we would like you to submit your results by uploading the relevant zip file to a shared Google Drive folder. In order to obtain the URL for this folder, please supply your Gmail or Google-based email address to either your agent or the Just Eat member of staff who assigned you the test. 10 | 11 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 12 | 13 | 1. A single markdown file with the answers to the technical questions 14 | 2. One folder containing the technical test 15 | 16 | 17 | ## Technical Test 18 | 19 | * Your task is to provision a highly available [Jenkins](https://jenkins.io/) cluster on [Kubernetes](https://kubernetes.io/). 20 | * With this test, we want to see your ability to create an entire infrastructure from scratch as well as your skills as a system administrator. 21 | 22 | ### Requirements 23 | 24 | * In your solution please emphasize on readability, maintainability and DevOps methodologies. We expect a clear way to recreate your setup. 25 | * Since you have to have an HA config using 443 please use a self signed cert. 26 | * Use any configuration management tool. 27 | * The infrastructure provider can be either Google Cloud or AWS. 28 | * You can create the solution in any language or framework of your choice. 29 | * A clean bare minimum working infrastructure is preferred than a full blown solution pieced together with scissors, rope and duct tape. Do not skip security considerations. 30 | * You should provide clear instructions on how to use the code you have provided. The clarity and precision of these instructions - and the ease with which the interviewers can execute them - will be a key part of the assessment. Please create a README file detailing said instructions. Please also use this file for listing any additional comments or observations you might want to share about your submission. 31 | 32 | ### Bonus Points 33 | 34 | * If you can provision Jenkins agents to be created on demand. 35 | * If you can document all aspects of your code, in the README and within the code itself. 36 | * If you can generate the self signed cert/key. 37 | * If you can make this run all in one playbook. 38 | 39 | # Technical questions 40 | 41 | Please answer the following questions in a markdown file called `Answers to technical questions.md`. 42 | 43 | 1. How long did you spend on the coding test? What would you add to your solution if you had more time? If you didn't spend much time on the coding test then use this as an opportunity to explain what you would add. 44 | 2. Why did you choose the language you used for the coding test? 45 | 3. What was the most useful feature that was added to the latest version of your chosen language? 46 | 4. Please describe yourself using JSON. 47 | 48 | #### Thanks for your time, we look forward to hearing from you! 49 | - The [Just Eat Tech team](https://careers.just-eat.com/departments/technology) 50 | -------------------------------------------------------------------------------- /Test.SOC.Engineer.md: -------------------------------------------------------------------------------- 1 | Just Eat Service Operations Engineer Recruitment Test 2 | ================================== 3 | 4 | Thank you for taking the time to do our technical test. It consists of two parts: 5 | 6 | * [A coding test](#coding-test) 7 | * [A few technical questions](#technical-questions) 8 | 9 | In order to avoid bounced emails we would like you to submit your results by uploading the relevant zip file to a shared Google Drive folder. In order to obtain the URL for this folder, please supply your Gmail or Google-based email address to either your agent or the Just Eat member of staff who assigned you the test. 10 | 11 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 12 | 13 | 1. a single markdown file with the answers to the technical questions 14 | 2. one folder containing the technical test 15 | 16 | ## Coding Test 17 | 18 | As a SOC Engineer you'll be working with APIs (Such as AWS's EC2 API). This test is designed to give you the opportunity to show your ability to query an API using languages that are commonly used during operations at Just Eat. 19 | 20 | Just Eat has a public API available at [https://public.je-apis.com/](https://public.je-apis.com/) that you can use to get restaurant information, including restaurant details and delivery information. 21 | 22 | As an example, [https://public.je-apis.com/restaurants?q=se19](https://public.je-apis.com/restaurants?q=se19) returns a list of restaurants that deliver to the outcode SE19, including some basic restaurant information. 23 | 24 | The API requires you specify a set of valid HTTP request headers, as shown below. An API key will be provided to you by a member of our recruitment team. 25 | 26 | ``` 27 | Accept-Tenant: uk 28 | Accept-Language: en-GB 29 | Authorization: [EMAIL YOUR RECRUITER] 30 | Host: public.je-apis.com 31 | ``` 32 | 33 | The task is to create an application or script that accepts an outcode as a parameter. The application should then display the following information about each restaurant that delivers to that outcode. 34 | 35 | - Name 36 | - Rating 37 | - Types of food for the restaurant 38 | 39 | ### Platform / Language Choice 40 | 41 | You can create the application as either a command line application or web application in any of the following languages: 42 | 43 | - PowerShell 44 | - Bash 45 | - Python 46 | - Ruby 47 | - .NET / C# 48 | 49 | 50 | ### Task requirements 51 | 52 | Feel free to spend as much or as little time on the exercise as you like as long as the following requirements have been met. 53 | 54 | - Please complete the user story below. 55 | - Your code should compile and run in one step. 56 | - Feel free to use whatever frameworks / libraries / packages you like. 57 | 58 | ### User Story 59 | 60 | As a **user running the application** 61 | I can **view a list of restaurants in a user submitted outcode (ex. SE19)** 62 | So that **I know which restaurants are currently available** 63 | 64 | 65 | #### Acceptance criteria 66 | 67 | - For the known outcode se19, results are returned 68 | - The Name, Cuisine Types and Rating of the restaurant are displayed 69 | 70 | # Technical questions 71 | 72 | Please answer the following questions in a markdown file called `Answers to technical questions.md`. 73 | 74 | 1. How long did you spend on the coding test? What would you add to your solution if you had more time? If you didn't spend much time on the coding test then use this as an opportunity to explain what you would add. 75 | 2. Why did you choose the language you used for the coding test? 76 | 3. What was the most useful feature that was added to the latest version of your chosen language? Please include a snippet of code that shows how you've used it. 77 | 4. How would you track down a performance issue in production? Have you ever had to do this? 78 | 5. How would you improve the Just Eat APIs that you just used? 79 | 6. Please describe yourself using JSON. 80 | 81 | 82 | #### Thanks for your time, we look forward to hearing from you! 83 | - The [Just Eat Tech team](https://careers.just-eat.com/departments/technology) 84 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > [!IMPORTANT] 2 | > We no longer use this repository for our recruitment processes. 3 | 4 | Just Eat Engineer Recruitment Test 5 | ================================== 6 | 7 | Thank you for taking the time to do our technical test. It consists of two parts: 8 | 9 | * [A coding test](#coding-test) 10 | * [A few technical questions](#technical-questions) 11 | 12 | In order to avoid bounced emails we would like you to submit your results by uploading the relevant ZIP file to a shared Google Drive folder. In order to obtain the URL for this folder, please supply your Gmail or Google-based email address to either your agent or the Just Eat member of staff who assigned you the test. 13 | 14 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 15 | 16 | 1. a single markdown file with the answers to the technical questions 17 | 2. one folder containing the technical test 18 | 19 | ## Coding Test 20 | 21 | Just Eat has a public API available at [https://uk.api.just-eat.io/](https://uk.api.just-eat.io/) that you will use to get restaurant information, including restaurant details and delivery information. We'd specifically like you to use the `SearchByPostcode` endpoint that is documented at [https://uk.api.just-eat.io/docs#operation/restaurantsBypostcodePostcodeGet](https://uk.api.just-eat.io/docs#operation/restaurantsBypostcodePostcodeGet). 22 | 23 | As an example, [https://uk.api.just-eat.io/restaurants/bypostcode/ec4m](https://uk.api.just-eat.io/restaurants/bypostcode/ec4m) returns a list of restaurants that deliver to the outcode EC4M, including some basic restaurant information. 24 | 25 | The task is to create an application that accepts an outcode as a parameter. The application should then display the following information about each restaurant that delivers to that outcode by querying our API: 26 | 27 | - Name 28 | - Rating 29 | - Types of food for the restaurant 30 | 31 | ### Platform Choice 32 | 33 | You can create the application as either a command line application, web application or mobile application in any of the following platforms 34 | 35 | - .NET, Python or JavaScript/TypeScript (can use Angular/React/Vue.js) for web applications. **Please note, due to CORS, calls directly from the browser will fail.** 36 | - .NET or Python for command line applications 37 | - iOS, Android or Windows Mobile for mobile applications 38 | 39 | Think about the type of work you would like to do at Just Eat and **choose an appropriate application type and platform**. 40 | 41 | ### Task requirements 42 | 43 | Feel free to spend as much or as little time on the exercise as you like as long as the following requirements have been met. However, we understand people have busy lives and would guide you to spend no more than 2-3 hours on a submission. We also take into consideration the [Answers to technical questions.md](#technical-questions) file and what you would like to have added if you had more time. You should look at this as the complete solution, it's much quicker to explain what you would like to have done than code it. 44 | 45 | - Please complete the user story below. 46 | - Your code should compile and run in one step. 47 | - Feel free to use whatever frameworks / libraries / packages you like. 48 | - You **must** include tests 49 | - Please avoid including artifacts from your local build (such as NuGet packages or the bin folder(s)) in your final ZIP file 50 | 51 | ### User Story 52 | 53 | Given I am a **user running the application** 54 | When I **submit an outcode (e.g. SE19)** 55 | Then I want to see a **list of restaurants** 56 | And I only want to see **restaurants that are currently open** 57 | 58 | If you have chosen a native mobile application platform please also include the following: 59 | 60 | Given I am a **user running the application** 61 | When I **submit an outcode (e.g. SE19)** 62 | Then I want to see a **list of restaurants** 63 | And I only want to see **restaurants that are currently open** 64 | And I want to see **the restaurant logo alongside the restaurant information** 65 | 66 | Given I am a **user running the application** 67 | When I click "auto detect outcode" it should **use GPS to find my current postcode to retrieve restaurant results** 68 | Then I want to see a **list of restaurants** 69 | And I only want to see **restaurants that are currently open** 70 | And I want to see **the restaurant logo alongside the restaurant information** 71 | 72 | #### Acceptance criteria 73 | 74 | - For the known outcode `ec4m`, results are returned 75 | - The Name, Cuisine Types and Rating of the restaurant are displayed 76 | 77 | # Technical questions 78 | 79 | Please answer the following questions in a markdown file called `Answers to technical questions.md`. 80 | 81 | 1. How long did you spend on the coding test? What would you add to your solution if you had more time? If you didn't spend much time on the coding test then use this as an opportunity to explain what you would add. 82 | 2. What was the most useful feature that was added to the latest version of your chosen language? Please include a snippet of code that shows how you've used it. 83 | 3. How would you track down a performance issue in production? Have you ever had to do this? 84 | 4. How would you improve the Just Eat APIs that you just used? 85 | 86 | 87 | #### Thanks for your time, we look forward to hearing from you! 88 | - The [Just Eat Tech team](https://careers.justeattakeaway.com/global/en/c/tech-product-jobs) 89 | -------------------------------------------------------------------------------- /Test.Automation.Engineer.md: -------------------------------------------------------------------------------- 1 | # Just Eat Test Automation Engineer Recruitment Test 2 | 3 | Thank you for taking the time to do our technical test. It consists of two parts: 4 | 5 | 1. [Technical test](#technical-test) 6 | - [UI Automated Test](#ui-automated-test) 7 | - [API Automated Test](#api-automated-test) 8 | 2. [Technical questions](#technical-questions) 9 | 10 | Please don't publish your solution as a public repository, but submit your results by uploading the relevant zip file to a shared Google Drive folder instead. 11 | In order to obtain the URL for this folder, please supply your Gmail or Google-based email address to either your recruitment contact or the Just Eat member of staff who assigned you the test. 12 | 13 | Please make this a **single** zip file named `{yourname}-{role-applied-for}.zip` containing: 14 | 15 | 1. A single markdown file with the answers to the technical questions 16 | 1. A folder containing the technical test (please try not to include files like library dependencies) 17 | 18 | ## Technical Test 19 | 20 | ### UI Automated Test 21 | 22 | Just Eat's consumer-facing website in the UK is available at [www.just-eat.co.uk](https://www.just-eat.co.uk/), which you can use to find takeaway restaurants in a postcode area. 23 | 24 | #### Tasks 25 | 26 | The UI Automated Test consists of two tasks: 27 | 28 | 1. Write the step definitions for the scenario below. 29 | 1. Add two more scenarios, with corresponding step definitions, which you feel would enhance the test coverage of the site. 30 | 31 | **NOTE:** Please refrain from stress testing or accidentally performing a DDoS attack as you are likely to get blocked by our security rules. 32 | 33 | #### Platform Choice 34 | 35 | Feel free to use any programming language, libraries and frameworks you are experienced with. If you choose Python then please contact the team as you will require a different endpoint to run your test against. 36 | 37 | #### Task requirements 38 | 39 | - Clear test setup and execution instructions are provided in the README.md file 40 | - All code changes are documented and structured as well-described Git commits 41 | 42 | #### Scenario to Automate 43 | 44 | ```gherkin 45 | Feature: Use the website to find restaurants 46 | So that I can order food 47 | As a hungry customer 48 | I want to be able to find restaurants in my area 49 | 50 | Scenario: Search for restaurants in an area 51 | Given I want food in "AR51 1AA" 52 | When I search for restaurants 53 | Then I should see some restaurants in "AR51 1AA" 54 | ``` 55 | 56 | ---- 57 | 58 | ### API Automated Test 59 | 60 | Just Eat has a public API available at that you will use to get restaurant information. 61 | 62 | #### Prerequisites 63 | 64 | - URL: 65 | - Endpoint: `/restaurants/bypostcode/{postcode}` 66 | - Method: `GET` 67 | 68 | #### Example 69 | 70 | `GET` returns complex restaurants-related data for postcode `AR51 1AA` 71 | 72 | #### Platform Choice 73 | 74 | Feel free to use any programming language, libraries and frameworks you are experienced with. 75 | 76 | **NOTE:** If you choose Python then please contact the team as you will require a different endpoint to run your test against. 77 | 78 | #### Tasks 79 | 80 | 1. Verify `Restaurants[n].Address` sub-object of each restaurant object in response. It should reflect the following schema: 81 | 82 | ``` json 83 | { 84 | "properties": { 85 | "City": { 86 | "type": "string", 87 | "description": "City name" 88 | }, 89 | "FirstLine": { 90 | "type": "string", 91 | "description": "First line of address" 92 | }, 93 | "Postcode": { 94 | "type": "string" 95 | }, 96 | "Latitude": { 97 | "type": "number", 98 | "format": "decimal" 99 | }, 100 | "Longitude": { 101 | "type": "number", 102 | "format": "decimal" 103 | } 104 | } 105 | } 106 | ``` 107 | 108 | 2. Verify the following functional requirements making 1 call to the [restaurants endpoint](https://github.com/justeat/JustEat.RecruitmentTest/blob/master/Test.Automation.Engineer.md#prerequisites): 109 | 110 | - `Check all the restaurants with more than 1 rating should have a star rating greater than 0` 111 | - `Check all the restaurants with no ratings should have a star rating of 0` 112 | - `Check 1 restaurant should have a valid URL by checking for a returned HTTP status code of 200 OK` 113 | 114 | 3. Design 3 more requirements which you think are missing most and implement verification tests. 115 | 116 | **NOTE:** If you call the restaurants endpoint repeatedly within a short period of time you will encounter DDoS protection and your IP address will be blocked. Please manage your API calls responsibly. 117 | 118 | #### Task requirements 119 | 120 | - A RESTful API test automation library/framework is implemented using any programming language from scratch 121 | - Clear test setup and execution instructions are provided in the README.md file 122 | - All code changes are documented and structured as well-described Git commits 123 | 124 | ---- 125 | 126 | ## Technical questions 127 | 128 | Please answer the following questions in a markdown file called `Answers to technical questions.md`. 129 | 130 | 1. How long did you spend on the technical test? 131 | 1. What would you add to your solution if you had more time? 132 | 1. If you didn't spend much time on the technical test then use this as an opportunity to explain what you would add. 133 | 1. What do you think is the most interesting trend in test automation? 134 | 1. How would you implement test automation in a legacy application? Have you ever had to do this? 135 | 1. How would you improve the customer experience of the Just Eat website? 136 | 137 | ---- 138 | 139 | Thanks for your time, we look forward to hearing from you! 140 | 141 | The [Just Eat Tech](https://careers.just-eat.com/departments/technology) team 142 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | https://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2017 Just Eat 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | https://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Product-Research/restaurant-search-results.md: -------------------------------------------------------------------------------- 1 | ```json 2 | { 3 | "OpenRestaurants": [ 4 | { 5 | "Id": 11245, 6 | "Name": "Barbican Express Pizza", 7 | "Address": { 8 | "FirstLine": "131 Whitecross Street", 9 | "City": "London", 10 | "Postcode": "EC1Y 8JL", 11 | "Latitude": 51.5233, 12 | "Longitude": -0.093295 13 | }, 14 | "DefaultDisplayRank": 0, 15 | "SeoName": "barbicanexpresspizza", 16 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/11245.gif", 17 | "IsCollection": true, 18 | "IsDelivery": true, 19 | "Cuisines": [ 20 | { 21 | "Name": "Italian", 22 | "SeoName": "italian" 23 | }, 24 | { 25 | "Name": "Pizza", 26 | "SeoName": "pizza" 27 | } 28 | ], 29 | "OpeningTime": "0001-01-01T00:00:00Z", 30 | "DriveDistance": 1.2, 31 | "DriveInfoCalculated": true, 32 | "DeliveryCost": 0, 33 | "MinimumDeliveryValue": 10, 34 | "IsNew": false, 35 | "RatingDetails": { 36 | "Count": 512, 37 | "StarRating": 5 38 | }, 39 | "OfferPercent": 0 40 | }, 41 | { 42 | "Id": 42856, 43 | "Name": "O' My Sushi", 44 | "Address": { 45 | "FirstLine": "21 Clerkenwell Road", 46 | "City": "London", 47 | "Postcode": "EC1M 5RD", 48 | "Latitude": 51.52251, 49 | "Longitude": -0.101674 50 | }, 51 | "DefaultDisplayRank": 1, 52 | "SeoName": "omysushi-ec1m", 53 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/42856.gif", 54 | "IsCollection": false, 55 | "IsDelivery": true, 56 | "Cuisines": [ 57 | { 58 | "Name": "Japanese", 59 | "SeoName": "japanese" 60 | }, 61 | { 62 | "Name": "Sushi", 63 | "SeoName": "sushi" 64 | } 65 | ], 66 | "OpeningTime": "0001-01-01T00:00:00Z", 67 | "DriveDistance": 0.8, 68 | "DriveInfoCalculated": true, 69 | "DeliveryCost": 0, 70 | "MinimumDeliveryValue": 14, 71 | "IsNew": false, 72 | "RatingDetails": { 73 | "Count": 103, 74 | "StarRating": 5 75 | }, 76 | "OfferPercent": 20 77 | }, 78 | { 79 | "Id": 52759, 80 | "Name": "Wok Away @ Noodle Express", 81 | "Address": { 82 | "FirstLine": "6-7 Albemarle Way", 83 | "City": "London", 84 | "Postcode": "EC1V 4JB", 85 | "Latitude": 51.522824, 86 | "Longitude": -0.102785 87 | }, 88 | "DefaultDisplayRank": 2, 89 | "SeoName": "wok-away--noodle-express-finsbury", 90 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/52759.gif", 91 | "IsCollection": true, 92 | "IsDelivery": true, 93 | "Cuisines": [ 94 | { 95 | "Name": "Chinese", 96 | "SeoName": "chinese" 97 | }, 98 | { 99 | "Name": "Oriental", 100 | "SeoName": "oriental" 101 | } 102 | ], 103 | "OpeningTime": "0001-01-01T00:00:00Z", 104 | "DriveDistance": 1.4, 105 | "DriveInfoCalculated": true, 106 | "DeliveryCost": 0, 107 | "MinimumDeliveryValue": 15, 108 | "IsNew": true, 109 | "RatingDetails": { 110 | "Count": 3, 111 | "StarRating": 6 112 | }, 113 | "OfferPercent": 0 114 | }, 115 | { 116 | "Id": 52391, 117 | "Name": "Hello Sushi @ N1 Grill", 118 | "Address": { 119 | "FirstLine": "6 Chapel Market", 120 | "City": "London", 121 | "Postcode": "N1 9EZ", 122 | "Latitude": 51.533552, 123 | "Longitude": -0.109981 124 | }, 125 | "DefaultDisplayRank": 3, 126 | "SeoName": "hello-sushi-n1", 127 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/52391.gif", 128 | "IsCollection": false, 129 | "IsDelivery": true, 130 | "Cuisines": [ 131 | { 132 | "Name": "Japanese", 133 | "SeoName": "japanese" 134 | }, 135 | { 136 | "Name": "Sushi", 137 | "SeoName": "sushi" 138 | } 139 | ], 140 | "OpeningTime": "0001-01-01T00:00:00Z", 141 | "DriveDistance": 2, 142 | "DriveInfoCalculated": true, 143 | "DeliveryCost": 0, 144 | "MinimumDeliveryValue": 15, 145 | "IsNew": true, 146 | "RatingDetails": { 147 | "Count": 31, 148 | "StarRating": 5 149 | }, 150 | "OfferPercent": 0 151 | }, 152 | { 153 | "Id": 52229, 154 | "Name": "Oriental House", 155 | "Address": { 156 | "FirstLine": "196 Hackney Road", 157 | "City": "London", 158 | "Postcode": "E2 7QL", 159 | "Latitude": 51.530519, 160 | "Longitude": -0.07278 161 | }, 162 | "DefaultDisplayRank": 4, 163 | "SeoName": "oriental-house-bethnal-green", 164 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/52229.gif", 165 | "IsCollection": true, 166 | "IsDelivery": true, 167 | "Cuisines": [ 168 | { 169 | "Name": "Chinese", 170 | "SeoName": "chinese" 171 | }, 172 | { 173 | "Name": "Thai", 174 | "SeoName": "thai" 175 | } 176 | ], 177 | "OpeningTime": "0001-01-01T00:00:00Z", 178 | "DriveDistance": 2.6, 179 | "DriveInfoCalculated": true, 180 | "DeliveryCost": 0, 181 | "MinimumDeliveryValue": 15, 182 | "IsNew": true, 183 | "RatingDetails": { 184 | "Count": 139, 185 | "StarRating": 5 186 | }, 187 | "OfferPercent": 0 188 | }, 189 | { 190 | "Id": 52512, 191 | "Name": "Magic Wok Original @ N1 Grill", 192 | "Address": { 193 | "FirstLine": "6 Chapel Market", 194 | "City": "London City", 195 | "Postcode": "N1 9EZ", 196 | "Latitude": 51.533552, 197 | "Longitude": -0.109981 198 | }, 199 | "DefaultDisplayRank": 5, 200 | "SeoName": "magic-wok-original-new-islington", 201 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/52512.gif", 202 | "IsCollection": false, 203 | "IsDelivery": true, 204 | "Cuisines": [ 205 | { 206 | "Name": "Chinese", 207 | "SeoName": "chinese" 208 | }, 209 | { 210 | "Name": "Oriental", 211 | "SeoName": "oriental" 212 | } 213 | ], 214 | "OpeningTime": "0001-01-01T00:00:00Z", 215 | "DriveDistance": 2, 216 | "DriveInfoCalculated": true, 217 | "DeliveryCost": 0, 218 | "MinimumDeliveryValue": 13, 219 | "IsNew": true, 220 | "RatingDetails": { 221 | "Count": 16, 222 | "StarRating": 4 223 | }, 224 | "OfferPercent": 0 225 | }, 226 | { 227 | "Id": 52683, 228 | "Name": "Cafe La Maison", 229 | "Address": { 230 | "FirstLine": "26-28 Brick Lane", 231 | "City": "London", 232 | "Postcode": "E1 6RF", 233 | "Latitude": 51.518025, 234 | "Longitude": -0.070987 235 | }, 236 | "DefaultDisplayRank": 6, 237 | "SeoName": "cafe-la-maison-aldgate", 238 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/52683.gif", 239 | "IsCollection": true, 240 | "IsDelivery": true, 241 | "Cuisines": [ 242 | { 243 | "Name": "Desserts", 244 | "SeoName": "desserts" 245 | }, 246 | { 247 | "Name": "Sandwiches", 248 | "SeoName": "sandwiches" 249 | } 250 | ], 251 | "OpeningTime": "0001-01-01T00:00:00Z", 252 | "DriveDistance": 2.2, 253 | "DriveInfoCalculated": true, 254 | "DeliveryCost": 0, 255 | "MinimumDeliveryValue": 20, 256 | "IsNew": true, 257 | "RatingDetails": { 258 | "Count": 0, 259 | "StarRating": 0 260 | }, 261 | "OfferPercent": 0 262 | }, 263 | { 264 | "Id": 25162, 265 | "Name": "Kenza Restaurant & Lounge", 266 | "Address": { 267 | "FirstLine": "10 Devonshire Square", 268 | "City": "London", 269 | "Postcode": "EC2M 4YP", 270 | "Latitude": 51.516582, 271 | "Longitude": -0.078355 272 | }, 273 | "DefaultDisplayRank": 7, 274 | "SeoName": "kenza-ec2m", 275 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/25162.gif", 276 | "IsCollection": true, 277 | "IsDelivery": true, 278 | "Cuisines": [ 279 | { 280 | "Name": "Lebanese", 281 | "SeoName": "lebanese" 282 | }, 283 | { 284 | "Name": "Moroccan", 285 | "SeoName": "Moroccan" 286 | } 287 | ], 288 | "OpeningTime": "2015-07-13T17:00:00Z", 289 | "DriveDistance": 1.2, 290 | "DriveInfoCalculated": true, 291 | "DeliveryCost": 2, 292 | "MinimumDeliveryValue": 20, 293 | "IsNew": false, 294 | "RatingDetails": { 295 | "Count": 49, 296 | "StarRating": 5 297 | }, 298 | "OfferPercent": 0 299 | }, 300 | { 301 | "Id": 47857, 302 | "Name": "Pronto", 303 | "Address": { 304 | "FirstLine": "Unit M 100 Greenfield Road", 305 | "City": "London", 306 | "Postcode": "E1 1EJ", 307 | "Latitude": 51.516066, 308 | "Longitude": -0.065607 309 | }, 310 | "DefaultDisplayRank": 8, 311 | "SeoName": "pronto-e1", 312 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/47857.gif", 313 | "IsCollection": false, 314 | "IsDelivery": true, 315 | "Cuisines": [ 316 | { 317 | "Name": "Healthy", 318 | "SeoName": "healthy" 319 | }, 320 | { 321 | "Name": "Italian", 322 | "SeoName": "italian" 323 | } 324 | ], 325 | "OpeningTime": "0001-01-01T00:00:00Z", 326 | "DriveDistance": 2.2, 327 | "DriveInfoCalculated": true, 328 | "DeliveryCost": 0, 329 | "MinimumDeliveryValue": 0, 330 | "IsNew": false, 331 | "RatingDetails": { 332 | "Count": 184, 333 | "StarRating": 5.5 334 | }, 335 | "OfferPercent": 20 336 | }, 337 | { 338 | "Id": 20603, 339 | "Name": "Chamisse Lebanese Restaurant & Grill", 340 | "Address": { 341 | "FirstLine": "55 Grays Inn Road", 342 | "City": "London", 343 | "Postcode": "WC1X 8PP", 344 | "Latitude": 51.522053, 345 | "Longitude": -0.114061 346 | }, 347 | "DefaultDisplayRank": 9, 348 | "SeoName": "chamisse-wc1x", 349 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/20603.gif", 350 | "IsCollection": true, 351 | "IsDelivery": true, 352 | "Cuisines": [ 353 | { 354 | "Name": "Lebanese", 355 | "SeoName": "lebanese" 356 | }, 357 | { 358 | "Name": "Middle Eastern", 359 | "SeoName": "middle-eastern" 360 | } 361 | ], 362 | "OpeningTime": "0001-01-01T00:00:00Z", 363 | "DriveDistance": 1.2, 364 | "DriveInfoCalculated": true, 365 | "DeliveryCost": 0, 366 | "MinimumDeliveryValue": 15, 367 | "IsNew": false, 368 | "RatingDetails": { 369 | "Count": 386, 370 | "StarRating": 5 371 | }, 372 | "OfferPercent": 0 373 | }, 374 | { 375 | "Id": 32192, 376 | "Name": "Royal Kitchen", 377 | "Address": { 378 | "FirstLine": "54 Aldgate High Street", 379 | "City": "London", 380 | "Postcode": "EC3N 1AL", 381 | "Latitude": 51.514089, 382 | "Longitude": -0.074413 383 | }, 384 | "DefaultDisplayRank": 10, 385 | "SeoName": "royalkitchen-ec3n", 386 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/32192.gif", 387 | "IsCollection": true, 388 | "IsDelivery": false, 389 | "Cuisines": [ 390 | { 391 | "Name": "Indian", 392 | "SeoName": "indian" 393 | }, 394 | { 395 | "Name": "Peri Peri", 396 | "SeoName": "peri-peri" 397 | } 398 | ], 399 | "OpeningTime": "2015-07-13T17:30:00Z", 400 | "DriveDistance": 1.3, 401 | "DriveInfoCalculated": true, 402 | "DeliveryCost": 0, 403 | "MinimumDeliveryValue": 0, 404 | "IsNew": false, 405 | "RatingDetails": { 406 | "Count": 22, 407 | "StarRating": 5.5 408 | }, 409 | "OfferPercent": 0 410 | }, 411 | { 412 | "Id": 51123, 413 | "Name": "Oishi Sushi", 414 | "Address": { 415 | "FirstLine": "106 Hoxton Street", 416 | "City": "London", 417 | "Postcode": "N1 6SG", 418 | "Latitude": 51.531024, 419 | "Longitude": -0.079999 420 | }, 421 | "DefaultDisplayRank": 11, 422 | "SeoName": "oishi-sushi-islington", 423 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/51123.gif", 424 | "IsCollection": true, 425 | "IsDelivery": true, 426 | "Cuisines": [ 427 | { 428 | "Name": "Japanese", 429 | "SeoName": "japanese" 430 | }, 431 | { 432 | "Name": "Sushi", 433 | "SeoName": "sushi" 434 | } 435 | ], 436 | "OpeningTime": "0001-01-01T00:00:00Z", 437 | "DriveDistance": 2, 438 | "DriveInfoCalculated": true, 439 | "DeliveryCost": 0, 440 | "MinimumDeliveryValue": 15, 441 | "IsNew": false, 442 | "RatingDetails": { 443 | "Count": 431, 444 | "StarRating": 5.5 445 | }, 446 | "OfferPercent": 25 447 | }, 448 | { 449 | "Id": 34992, 450 | "Name": "Kitchen Dhaanya", 451 | "Address": { 452 | "FirstLine": "106 Hoxton Street", 453 | "City": "London", 454 | "Postcode": "N1 6SG", 455 | "Latitude": 51.531024, 456 | "Longitude": -0.079999 457 | }, 458 | "DefaultDisplayRank": 12, 459 | "SeoName": "kitchendhanya-n1", 460 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/34992.gif", 461 | "IsCollection": true, 462 | "IsDelivery": true, 463 | "Cuisines": [ 464 | { 465 | "Name": "Indian", 466 | "SeoName": "indian" 467 | }, 468 | { 469 | "Name": "Bangladeshi", 470 | "SeoName": "bangladeshi" 471 | } 472 | ], 473 | "OpeningTime": "0001-01-01T00:00:00Z", 474 | "DriveDistance": 2, 475 | "DriveInfoCalculated": true, 476 | "DeliveryCost": 0, 477 | "MinimumDeliveryValue": 15, 478 | "IsNew": false, 479 | "RatingDetails": { 480 | "Count": 489, 481 | "StarRating": 5 482 | }, 483 | "OfferPercent": 30 484 | }, 485 | { 486 | "Id": 776, 487 | "Name": "Best American Pizza", 488 | "Address": { 489 | "FirstLine": "16A Pitfield Street", 490 | "City": "Hackney", 491 | "Postcode": "N1 6EY", 492 | "Latitude": 51.527134, 493 | "Longitude": -0.083536 494 | }, 495 | "DefaultDisplayRank": 13, 496 | "SeoName": "bestamerican", 497 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/776.gif", 498 | "IsCollection": true, 499 | "IsDelivery": true, 500 | "Cuisines": [ 501 | { 502 | "Name": "Italian", 503 | "SeoName": "italian" 504 | }, 505 | { 506 | "Name": "Pizza", 507 | "SeoName": "pizza" 508 | } 509 | ], 510 | "OpeningTime": "0001-01-01T00:00:00Z", 511 | "DriveDistance": 2, 512 | "DriveInfoCalculated": true, 513 | "DeliveryCost": 0, 514 | "MinimumDeliveryValue": 10, 515 | "IsNew": false, 516 | "RatingDetails": { 517 | "Count": 898, 518 | "StarRating": 5 519 | }, 520 | "OfferPercent": 0 521 | }, 522 | { 523 | "Id": 12171, 524 | "Name": "Fusion Grill", 525 | "Address": { 526 | "FirstLine": "233 Waterloo Road", 527 | "City": "London", 528 | "Postcode": "SE1 8XH", 529 | "Latitude": 51.499694, 530 | "Longitude": -0.106587 531 | }, 532 | "DefaultDisplayRank": 14, 533 | "SeoName": "perfect-fried-chiken-se1", 534 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/12171.gif", 535 | "IsCollection": true, 536 | "IsDelivery": false, 537 | "Cuisines": [ 538 | { 539 | "Name": "Kebab", 540 | "SeoName": "kebabs" 541 | }, 542 | { 543 | "Name": "Grill", 544 | "SeoName": "grill" 545 | } 546 | ], 547 | "OpeningTime": "2015-07-13T16:00:00Z", 548 | "DriveDistance": 2, 549 | "DriveInfoCalculated": true, 550 | "DeliveryCost": 0, 551 | "MinimumDeliveryValue": 12, 552 | "IsNew": false, 553 | "RatingDetails": { 554 | "Count": 121, 555 | "StarRating": 4.5 556 | }, 557 | "OfferPercent": 20 558 | }, 559 | { 560 | "Id": 39247, 561 | "Name": "Kennington Tandoori", 562 | "Address": { 563 | "FirstLine": "313 Kennington Road", 564 | "City": "London", 565 | "Postcode": "SE11 4QE", 566 | "Latitude": 51.487615, 567 | "Longitude": -0.110904 568 | }, 569 | "DefaultDisplayRank": 15, 570 | "SeoName": "kenningtontandoori-se11", 571 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/39247.gif", 572 | "IsCollection": true, 573 | "IsDelivery": true, 574 | "Cuisines": [ 575 | { 576 | "Name": "Indian", 577 | "SeoName": "indian" 578 | }, 579 | { 580 | "Name": "Grill", 581 | "SeoName": "grill" 582 | } 583 | ], 584 | "OpeningTime": "0001-01-01T00:00:00Z", 585 | "DriveDistance": 2.4, 586 | "DriveInfoCalculated": true, 587 | "DeliveryCost": 0, 588 | "MinimumDeliveryValue": 15, 589 | "IsNew": false, 590 | "RatingDetails": { 591 | "Count": 281, 592 | "StarRating": 5 593 | }, 594 | "OfferPercent": 0 595 | }, 596 | { 597 | "Id": 19789, 598 | "Name": "After Taste", 599 | "Address": { 600 | "FirstLine": "97 Newington Butts", 601 | "City": "Elephant & Castle", 602 | "Postcode": "SE1 6SF", 603 | "Latitude": 51.492601, 604 | "Longitude": -0.100612 605 | }, 606 | "DefaultDisplayRank": 16, 607 | "SeoName": "aftertastesw6", 608 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/19789.gif", 609 | "IsCollection": true, 610 | "IsDelivery": false, 611 | "Cuisines": [ 612 | { 613 | "Name": "Chinese", 614 | "SeoName": "chinese" 615 | } 616 | ], 617 | "OpeningTime": "2015-07-13T16:00:00Z", 618 | "DriveDistance": 2, 619 | "DriveInfoCalculated": true, 620 | "DeliveryCost": 0, 621 | "MinimumDeliveryValue": 12, 622 | "IsNew": false, 623 | "RatingDetails": { 624 | "Count": 246, 625 | "StarRating": 5 626 | }, 627 | "OfferPercent": 0 628 | }, 629 | { 630 | "Id": 13047, 631 | "Name": "Takari", 632 | "Address": { 633 | "FirstLine": "22 Drury Lane, Covent Garden", 634 | "City": "London", 635 | "Postcode": "WC2B 5RH", 636 | "Latitude": 51.515006, 637 | "Longitude": -0.123218 638 | }, 639 | "DefaultDisplayRank": 17, 640 | "SeoName": "takariwc2b", 641 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/13047.gif", 642 | "IsCollection": true, 643 | "IsDelivery": false, 644 | "Cuisines": [ 645 | { 646 | "Name": "Indian", 647 | "SeoName": "indian" 648 | }, 649 | { 650 | "Name": "Curry", 651 | "SeoName": "curry" 652 | } 653 | ], 654 | "OpeningTime": "2015-07-13T16:00:00Z", 655 | "DriveDistance": 1.1, 656 | "DriveInfoCalculated": true, 657 | "DeliveryCost": 0, 658 | "MinimumDeliveryValue": 15, 659 | "IsNew": false, 660 | "RatingDetails": { 661 | "Count": 395, 662 | "StarRating": 5 663 | }, 664 | "OfferPercent": 25 665 | }, 666 | { 667 | "Id": 19798, 668 | "Name": "The Sushi Chef", 669 | "Address": { 670 | "FirstLine": "1 Kennington Lane", 671 | "City": "London", 672 | "Postcode": "SE11 4RG", 673 | "Latitude": 51.491138, 674 | "Longitude": -0.103527 675 | }, 676 | "DefaultDisplayRank": 18, 677 | "SeoName": "thesushichefse11", 678 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/19798.gif", 679 | "IsCollection": true, 680 | "IsDelivery": true, 681 | "Cuisines": [ 682 | { 683 | "Name": "Japanese", 684 | "SeoName": "japanese" 685 | }, 686 | { 687 | "Name": "Sushi", 688 | "SeoName": "sushi" 689 | } 690 | ], 691 | "OpeningTime": "0001-01-01T00:00:00Z", 692 | "DriveDistance": 2.4, 693 | "DriveInfoCalculated": true, 694 | "DeliveryCost": 2.5, 695 | "MinimumDeliveryValue": 25, 696 | "IsNew": false, 697 | "RatingDetails": { 698 | "Count": 204, 699 | "StarRating": 5 700 | }, 701 | "OfferPercent": 0 702 | }, 703 | { 704 | "Id": 41413, 705 | "Name": "Naha Sushi", 706 | "Address": { 707 | "FirstLine": "62 Cleveland Way", 708 | "City": "London", 709 | "Postcode": "E1 4UF", 710 | "Latitude": 51.522144, 711 | "Longitude": -0.053056 712 | }, 713 | "DefaultDisplayRank": 19, 714 | "SeoName": "nahasushi-e1", 715 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/41413.gif", 716 | "IsCollection": true, 717 | "IsDelivery": true, 718 | "Cuisines": [ 719 | { 720 | "Name": "Sushi", 721 | "SeoName": "sushi" 722 | }, 723 | { 724 | "Name": "Japanese", 725 | "SeoName": "japanese" 726 | } 727 | ], 728 | "OpeningTime": "0001-01-01T00:00:00Z", 729 | "DriveDistance": 2.2, 730 | "DriveInfoCalculated": true, 731 | "DeliveryCost": 0, 732 | "MinimumDeliveryValue": 14, 733 | "IsNew": false, 734 | "RatingDetails": { 735 | "Count": 619, 736 | "StarRating": 5 737 | }, 738 | "OfferPercent": 0 739 | }, 740 | { 741 | "Id": 18130, 742 | "Name": "You Me Sushi", 743 | "Address": { 744 | "FirstLine": "180 Grays Inn Road", 745 | "City": "London", 746 | "Postcode": "WC1X 8EW", 747 | "Latitude": 51.522945, 748 | "Longitude": -0.114142 749 | }, 750 | "DefaultDisplayRank": 20, 751 | "SeoName": "YouMeSushiwc1x", 752 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/18130.gif", 753 | "IsCollection": true, 754 | "IsDelivery": true, 755 | "Cuisines": [ 756 | { 757 | "Name": "Japanese", 758 | "SeoName": "japanese" 759 | }, 760 | { 761 | "Name": "Sushi", 762 | "SeoName": "sushi" 763 | } 764 | ], 765 | "OpeningTime": "0001-01-01T00:00:00Z", 766 | "DriveDistance": 1.2, 767 | "DriveInfoCalculated": true, 768 | "DeliveryCost": 0, 769 | "MinimumDeliveryValue": 0, 770 | "IsNew": false, 771 | "RatingDetails": { 772 | "Count": 166, 773 | "StarRating": 4.5 774 | }, 775 | "OfferPercent": 0 776 | }, 777 | { 778 | "Id": 5569, 779 | "Name": "Hiba Lebanese Restaurant", 780 | "Address": { 781 | "FirstLine": "113 High Holborn", 782 | "City": "London", 783 | "Postcode": "WC1V 6JQ", 784 | "Latitude": 51.517856, 785 | "Longitude": -0.119829 786 | }, 787 | "DefaultDisplayRank": 21, 788 | "SeoName": "hiba-lebanese-southwark", 789 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/5569.gif", 790 | "IsCollection": true, 791 | "IsDelivery": true, 792 | "Cuisines": [ 793 | { 794 | "Name": "Lebanese", 795 | "SeoName": "lebanese" 796 | } 797 | ], 798 | "OpeningTime": "0001-01-01T00:00:00Z", 799 | "DriveDistance": 1, 800 | "DriveInfoCalculated": true, 801 | "DeliveryCost": 0, 802 | "MinimumDeliveryValue": 15, 803 | "IsNew": false, 804 | "RatingDetails": { 805 | "Count": 222, 806 | "StarRating": 4.5 807 | }, 808 | "OfferPercent": 0 809 | }, 810 | { 811 | "Id": 5377, 812 | "Name": "Forno Pizza", 813 | "Address": { 814 | "FirstLine": "145-147 Lambeth Walk", 815 | "City": "Lambeth", 816 | "Postcode": "SE11 6EE", 817 | "Latitude": 51.492695, 818 | "Longitude": -0.116457 819 | }, 820 | "DefaultDisplayRank": 22, 821 | "SeoName": "forno-pizza-lambeth", 822 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/5377.gif", 823 | "IsCollection": true, 824 | "IsDelivery": true, 825 | "Cuisines": [ 826 | { 827 | "Name": "Italian", 828 | "SeoName": "italian" 829 | }, 830 | { 831 | "Name": "Pizza", 832 | "SeoName": "pizza" 833 | } 834 | ], 835 | "OpeningTime": "0001-01-01T00:00:00Z", 836 | "DriveDistance": 2.4, 837 | "DriveInfoCalculated": true, 838 | "DeliveryCost": 0, 839 | "MinimumDeliveryValue": 8, 840 | "IsNew": false, 841 | "RatingDetails": { 842 | "Count": 623, 843 | "StarRating": 5 844 | }, 845 | "OfferPercent": 0 846 | }, 847 | { 848 | "Id": 777, 849 | "Name": "Kebab Land Fried Chicken", 850 | "Address": { 851 | "FirstLine": "16A Pitfield Street", 852 | "City": "London", 853 | "Postcode": "N1 6EY", 854 | "Latitude": 51.527134, 855 | "Longitude": -0.083536 856 | }, 857 | "DefaultDisplayRank": 23, 858 | "SeoName": "kebabland-n1", 859 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/777.gif", 860 | "IsCollection": true, 861 | "IsDelivery": true, 862 | "Cuisines": [ 863 | { 864 | "Name": "Chicken", 865 | "SeoName": "chicken" 866 | }, 867 | { 868 | "Name": "Kebab", 869 | "SeoName": "kebabs" 870 | } 871 | ], 872 | "OpeningTime": "0001-01-01T00:00:00Z", 873 | "DriveDistance": 2, 874 | "DriveInfoCalculated": true, 875 | "DeliveryCost": 0, 876 | "MinimumDeliveryValue": 10, 877 | "IsNew": false, 878 | "RatingDetails": { 879 | "Count": 598, 880 | "StarRating": 4.5 881 | }, 882 | "OfferPercent": 0 883 | }, 884 | { 885 | "Id": 27687, 886 | "Name": "Papa Johns", 887 | "Address": { 888 | "FirstLine": "65 Farringdon Road", 889 | "City": "London", 890 | "Postcode": "EC1M 3JB", 891 | "Latitude": 51.520418, 892 | "Longitude": -0.106319 893 | }, 894 | "DefaultDisplayRank": 24, 895 | "SeoName": "papajohns-ec1m", 896 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/27687.gif", 897 | "IsCollection": true, 898 | "IsDelivery": true, 899 | "Cuisines": [ 900 | { 901 | "Name": "Pizza", 902 | "SeoName": "pizza" 903 | } 904 | ], 905 | "OpeningTime": "0001-01-01T00:00:00Z", 906 | "DriveDistance": 0.8, 907 | "DriveInfoCalculated": true, 908 | "DeliveryCost": 0, 909 | "MinimumDeliveryValue": 15, 910 | "IsNew": false, 911 | "RatingDetails": { 912 | "Count": 76, 913 | "StarRating": 4 914 | }, 915 | "OfferPercent": 0 916 | }, 917 | { 918 | "Id": 8598, 919 | "Name": "Adiva", 920 | "Address": { 921 | "FirstLine": "43a Commercial Street", 922 | "City": "London", 923 | "Postcode": "E1 6BD", 924 | "Latitude": 51.517654, 925 | "Longitude": -0.074116 926 | }, 927 | "DefaultDisplayRank": 25, 928 | "SeoName": "adiva", 929 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/8598.gif", 930 | "IsCollection": true, 931 | "IsDelivery": true, 932 | "Cuisines": [ 933 | { 934 | "Name": "Turkish", 935 | "SeoName": "turkish" 936 | }, 937 | { 938 | "Name": "Lebanese", 939 | "SeoName": "lebanese" 940 | } 941 | ], 942 | "OpeningTime": "0001-01-01T00:00:00Z", 943 | "DriveDistance": 2.2, 944 | "DriveInfoCalculated": true, 945 | "DeliveryCost": 0, 946 | "MinimumDeliveryValue": 15, 947 | "IsNew": false, 948 | "RatingDetails": { 949 | "Count": 560, 950 | "StarRating": 5 951 | }, 952 | "OfferPercent": 0 953 | }, 954 | { 955 | "Id": 1257, 956 | "Name": "Neds Noodle Bar SE1", 957 | "Address": { 958 | "FirstLine": "3E Belvedere Road", 959 | "City": "London", 960 | "Postcode": "SE1 7GQ", 961 | "Latitude": 51.502246, 962 | "Longitude": -0.117605 963 | }, 964 | "DefaultDisplayRank": 26, 965 | "SeoName": "nedsnoodlebarse1", 966 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/1257.gif", 967 | "IsCollection": true, 968 | "IsDelivery": true, 969 | "Cuisines": [ 970 | { 971 | "Name": "Chinese", 972 | "SeoName": "chinese" 973 | }, 974 | { 975 | "Name": "Japanese", 976 | "SeoName": "japanese" 977 | } 978 | ], 979 | "OpeningTime": "0001-01-01T00:00:00Z", 980 | "DriveDistance": 2, 981 | "DriveInfoCalculated": true, 982 | "DeliveryCost": 1, 983 | "MinimumDeliveryValue": 11, 984 | "IsNew": false, 985 | "RatingDetails": { 986 | "Count": 128, 987 | "StarRating": 4.5 988 | }, 989 | "OfferPercent": 0 990 | }, 991 | { 992 | "Id": 22548, 993 | "Name": "Tops Pizza", 994 | "Address": { 995 | "FirstLine": "86 Borough Road", 996 | "City": "London", 997 | "Postcode": "SE1 1DN", 998 | "Latitude": 51.499, 999 | "Longitude": -0.098692 1000 | }, 1001 | "DefaultDisplayRank": 27, 1002 | "SeoName": "topspizza-se1", 1003 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/22548.gif", 1004 | "IsCollection": true, 1005 | "IsDelivery": true, 1006 | "Cuisines": [ 1007 | { 1008 | "Name": "Pizza", 1009 | "SeoName": "pizza" 1010 | } 1011 | ], 1012 | "OpeningTime": "0001-01-01T00:00:00Z", 1013 | "DriveDistance": 2, 1014 | "DriveInfoCalculated": true, 1015 | "DeliveryCost": 0, 1016 | "MinimumDeliveryValue": 9.99, 1017 | "IsNew": false, 1018 | "RatingDetails": { 1019 | "Count": 65, 1020 | "StarRating": 4.5 1021 | }, 1022 | "OfferPercent": 0 1023 | }, 1024 | { 1025 | "Id": 51392, 1026 | "Name": "Yummy Sushi", 1027 | "Address": { 1028 | "FirstLine": "48 Brick Lane", 1029 | "City": "London", 1030 | "Postcode": "E1 6RF", 1031 | "Latitude": 51.518025, 1032 | "Longitude": -0.070987 1033 | }, 1034 | "DefaultDisplayRank": 28, 1035 | "SeoName": "yummy-sushi-aldgate", 1036 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/51392.gif", 1037 | "IsCollection": true, 1038 | "IsDelivery": true, 1039 | "Cuisines": [ 1040 | { 1041 | "Name": "Sushi", 1042 | "SeoName": "sushi" 1043 | }, 1044 | { 1045 | "Name": "Japanese", 1046 | "SeoName": "japanese" 1047 | } 1048 | ], 1049 | "OpeningTime": "0001-01-01T00:00:00Z", 1050 | "DriveDistance": 2.2, 1051 | "DriveInfoCalculated": true, 1052 | "DeliveryCost": 0, 1053 | "MinimumDeliveryValue": 14, 1054 | "IsNew": false, 1055 | "RatingDetails": { 1056 | "Count": 106, 1057 | "StarRating": 5 1058 | }, 1059 | "OfferPercent": 20 1060 | }, 1061 | { 1062 | "Id": 525, 1063 | "Name": "Pizza 2 Go", 1064 | "Address": { 1065 | "FirstLine": "15 Tabard Street", 1066 | "City": "London", 1067 | "Postcode": "SE1 4LA", 1068 | "Latitude": 51.500717, 1069 | "Longitude": -0.091445 1070 | }, 1071 | "DefaultDisplayRank": 29, 1072 | "SeoName": "pizza2go", 1073 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/525.gif", 1074 | "IsCollection": true, 1075 | "IsDelivery": true, 1076 | "Cuisines": [ 1077 | { 1078 | "Name": "Italian", 1079 | "SeoName": "italian" 1080 | }, 1081 | { 1082 | "Name": "Pizza", 1083 | "SeoName": "pizza" 1084 | } 1085 | ], 1086 | "OpeningTime": "2015-07-13T16:00:00Z", 1087 | "DriveDistance": 2, 1088 | "DriveInfoCalculated": true, 1089 | "DeliveryCost": 0, 1090 | "MinimumDeliveryValue": 6, 1091 | "IsNew": false, 1092 | "RatingDetails": { 1093 | "Count": 551, 1094 | "StarRating": 4.5 1095 | }, 1096 | "OfferPercent": 0 1097 | }, 1098 | { 1099 | "Id": 50185, 1100 | "Name": "Shanghai Express @ ABACUS", 1101 | "Address": { 1102 | "FirstLine": "186 Hackney Road", 1103 | "City": "London", 1104 | "Postcode": "E2 7PA", 1105 | "Latitude": 51.527796, 1106 | "Longitude": -0.076184 1107 | }, 1108 | "DefaultDisplayRank": 30, 1109 | "SeoName": "shanghai-express--abacus-bethnal-green", 1110 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/50185.gif", 1111 | "IsCollection": false, 1112 | "IsDelivery": true, 1113 | "Cuisines": [ 1114 | { 1115 | "Name": "Chinese", 1116 | "SeoName": "chinese" 1117 | }, 1118 | { 1119 | "Name": "Thai", 1120 | "SeoName": "thai" 1121 | } 1122 | ], 1123 | "OpeningTime": "0001-01-01T00:00:00Z", 1124 | "DriveDistance": 2.6, 1125 | "DriveInfoCalculated": true, 1126 | "DeliveryCost": 0, 1127 | "MinimumDeliveryValue": 15, 1128 | "IsNew": false, 1129 | "RatingDetails": { 1130 | "Count": 319, 1131 | "StarRating": 5 1132 | }, 1133 | "OfferPercent": 0 1134 | }, 1135 | { 1136 | "Id": 51352, 1137 | "Name": "Jus Jerk", 1138 | "Address": { 1139 | "FirstLine": "66 Leather Lane", 1140 | "City": "London", 1141 | "Postcode": "EC1N 7TR", 1142 | "Latitude": 51.520446, 1143 | "Longitude": -0.109748 1144 | }, 1145 | "DefaultDisplayRank": 31, 1146 | "SeoName": "jus-jerk-london", 1147 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/51352.gif", 1148 | "IsCollection": false, 1149 | "IsDelivery": true, 1150 | "Cuisines": [ 1151 | { 1152 | "Name": "Chicken", 1153 | "SeoName": "chicken" 1154 | }, 1155 | { 1156 | "Name": "Caribbean", 1157 | "SeoName": "caribbean" 1158 | } 1159 | ], 1160 | "OpeningTime": "2015-07-13T16:00:00Z", 1161 | "DriveDistance": 0.7, 1162 | "DriveInfoCalculated": true, 1163 | "DeliveryCost": 0, 1164 | "MinimumDeliveryValue": 0, 1165 | "IsNew": false, 1166 | "RatingDetails": { 1167 | "Count": 38, 1168 | "StarRating": 4.5 1169 | }, 1170 | "OfferPercent": 0 1171 | }, 1172 | { 1173 | "Id": 45540, 1174 | "Name": "Masago Sushi", 1175 | "Address": { 1176 | "FirstLine": "78 Wentworth Street", 1177 | "City": "London", 1178 | "Postcode": "E1 7SA", 1179 | "Latitude": 51.516996, 1180 | "Longitude": -0.07184 1181 | }, 1182 | "DefaultDisplayRank": 32, 1183 | "SeoName": "masagosushi-e1", 1184 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/45540.gif", 1185 | "IsCollection": true, 1186 | "IsDelivery": true, 1187 | "Cuisines": [ 1188 | { 1189 | "Name": "Japanese", 1190 | "SeoName": "japanese" 1191 | }, 1192 | { 1193 | "Name": "Sushi", 1194 | "SeoName": "sushi" 1195 | } 1196 | ], 1197 | "OpeningTime": "0001-01-01T00:00:00Z", 1198 | "DriveDistance": 2.2, 1199 | "DriveInfoCalculated": true, 1200 | "DeliveryCost": 0, 1201 | "MinimumDeliveryValue": 15, 1202 | "IsNew": false, 1203 | "RatingDetails": { 1204 | "Count": 58, 1205 | "StarRating": 5 1206 | }, 1207 | "OfferPercent": 0 1208 | }, 1209 | { 1210 | "Id": 15223, 1211 | "Name": "Azka Turkish Meze", 1212 | "Address": { 1213 | "FirstLine": "269 Stepney Way", 1214 | "City": "London", 1215 | "Postcode": "E1 3DH", 1216 | "Latitude": 51.516962, 1217 | "Longitude": -0.046385 1218 | }, 1219 | "DefaultDisplayRank": 33, 1220 | "SeoName": "Azkaturkishmeze", 1221 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/15223.gif", 1222 | "IsCollection": true, 1223 | "IsDelivery": true, 1224 | "Cuisines": [ 1225 | { 1226 | "Name": "Turkish", 1227 | "SeoName": "turkish" 1228 | }, 1229 | { 1230 | "Name": "Grill", 1231 | "SeoName": "grill" 1232 | } 1233 | ], 1234 | "OpeningTime": "0001-01-01T00:00:00Z", 1235 | "DriveDistance": 2.2, 1236 | "DriveInfoCalculated": true, 1237 | "DeliveryCost": 0, 1238 | "MinimumDeliveryValue": 15, 1239 | "IsNew": false, 1240 | "RatingDetails": { 1241 | "Count": 464, 1242 | "StarRating": 5 1243 | }, 1244 | "OfferPercent": 20 1245 | }, 1246 | { 1247 | "Id": 33291, 1248 | "Name": "Leo's Lebanese Grill", 1249 | "Address": { 1250 | "FirstLine": "57 Baylis Road", 1251 | "City": "London", 1252 | "Postcode": "SE1 7AU", 1253 | "Latitude": 51.500479, 1254 | "Longitude": -0.110675 1255 | }, 1256 | "DefaultDisplayRank": 34, 1257 | "SeoName": "lebanesegrill-se1", 1258 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/33291.gif", 1259 | "IsCollection": true, 1260 | "IsDelivery": true, 1261 | "Cuisines": [ 1262 | { 1263 | "Name": "Lebanese", 1264 | "SeoName": "lebanese" 1265 | }, 1266 | { 1267 | "Name": "Kebab", 1268 | "SeoName": "kebabs" 1269 | } 1270 | ], 1271 | "OpeningTime": "0001-01-01T00:00:00Z", 1272 | "DriveDistance": 2, 1273 | "DriveInfoCalculated": true, 1274 | "DeliveryCost": 0, 1275 | "MinimumDeliveryValue": 15, 1276 | "IsNew": false, 1277 | "RatingDetails": { 1278 | "Count": 296, 1279 | "StarRating": 4.5 1280 | }, 1281 | "OfferPercent": 20 1282 | }, 1283 | { 1284 | "Id": 21969, 1285 | "Name": "US Way Pizza", 1286 | "Address": { 1287 | "FirstLine": "196 Hackney Road", 1288 | "City": "London", 1289 | "Postcode": "E2 7QL", 1290 | "Latitude": 51.530509, 1291 | "Longitude": -0.072754 1292 | }, 1293 | "DefaultDisplayRank": 35, 1294 | "SeoName": "uswaypizza-e2", 1295 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/21969.gif", 1296 | "IsCollection": true, 1297 | "IsDelivery": true, 1298 | "Cuisines": [ 1299 | { 1300 | "Name": "Pizza", 1301 | "SeoName": "pizza" 1302 | }, 1303 | { 1304 | "Name": "Burgers", 1305 | "SeoName": "burgers" 1306 | } 1307 | ], 1308 | "OpeningTime": "0001-01-01T00:00:00Z", 1309 | "DriveDistance": 2.6, 1310 | "DriveInfoCalculated": true, 1311 | "DeliveryCost": 0, 1312 | "MinimumDeliveryValue": 12, 1313 | "IsNew": false, 1314 | "RatingDetails": { 1315 | "Count": 986, 1316 | "StarRating": 5 1317 | }, 1318 | "OfferPercent": 0 1319 | }, 1320 | { 1321 | "Id": 21278, 1322 | "Name": "Oriental Garden", 1323 | "Address": { 1324 | "FirstLine": "113a Kennington Road", 1325 | "City": "London", 1326 | "Postcode": "SE11 6SF", 1327 | "Latitude": 51.4942, 1328 | "Longitude": -0.110488 1329 | }, 1330 | "DefaultDisplayRank": 36, 1331 | "SeoName": "orientalgarden-se11", 1332 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/21278.gif", 1333 | "IsCollection": true, 1334 | "IsDelivery": true, 1335 | "Cuisines": [ 1336 | { 1337 | "Name": "Chinese", 1338 | "SeoName": "chinese" 1339 | } 1340 | ], 1341 | "OpeningTime": "0001-01-01T00:00:00Z", 1342 | "DriveDistance": 2.4, 1343 | "DriveInfoCalculated": true, 1344 | "DeliveryCost": 0, 1345 | "MinimumDeliveryValue": 10, 1346 | "IsNew": false, 1347 | "RatingDetails": { 1348 | "Count": 386, 1349 | "StarRating": 4.5 1350 | }, 1351 | "OfferPercent": 20 1352 | }, 1353 | { 1354 | "Id": 25400, 1355 | "Name": "Pepe's Piri Piri", 1356 | "Address": { 1357 | "FirstLine": "82-84 Brick Lane", 1358 | "City": "London", 1359 | "Postcode": "E1 6RL", 1360 | "Latitude": 51.51952, 1361 | "Longitude": -0.071647 1362 | }, 1363 | "DefaultDisplayRank": 37, 1364 | "SeoName": "pepsperiperi-e1", 1365 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/25400.gif", 1366 | "IsCollection": true, 1367 | "IsDelivery": false, 1368 | "Cuisines": [ 1369 | { 1370 | "Name": "Chicken", 1371 | "SeoName": "chicken" 1372 | }, 1373 | { 1374 | "Name": "American", 1375 | "SeoName": "american" 1376 | } 1377 | ], 1378 | "OpeningTime": "2015-07-13T16:00:00Z", 1379 | "DriveDistance": 2.2, 1380 | "DriveInfoCalculated": true, 1381 | "DeliveryCost": 0, 1382 | "MinimumDeliveryValue": 12, 1383 | "IsNew": false, 1384 | "RatingDetails": { 1385 | "Count": 299, 1386 | "StarRating": 4.5 1387 | }, 1388 | "OfferPercent": 0 1389 | }, 1390 | { 1391 | "Id": 47815, 1392 | "Name": "Yakitori-Ya", 1393 | "Address": { 1394 | "FirstLine": "120 Whitechapel Road", 1395 | "City": "London", 1396 | "Postcode": "E1 1JE", 1397 | "Latitude": 51.517951, 1398 | "Longitude": -0.063742 1399 | }, 1400 | "DefaultDisplayRank": 38, 1401 | "SeoName": "yakitori-e1", 1402 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/47815.gif", 1403 | "IsCollection": true, 1404 | "IsDelivery": true, 1405 | "Cuisines": [ 1406 | { 1407 | "Name": "Sushi", 1408 | "SeoName": "sushi" 1409 | }, 1410 | { 1411 | "Name": "Grill", 1412 | "SeoName": "grill" 1413 | } 1414 | ], 1415 | "OpeningTime": "0001-01-01T00:00:00Z", 1416 | "DriveDistance": 2.2, 1417 | "DriveInfoCalculated": true, 1418 | "DeliveryCost": 0, 1419 | "MinimumDeliveryValue": 15, 1420 | "IsNew": false, 1421 | "RatingDetails": { 1422 | "Count": 49, 1423 | "StarRating": 4.5 1424 | }, 1425 | "OfferPercent": 20 1426 | }, 1427 | { 1428 | "Id": 23573, 1429 | "Name": "Handmade Sushi (est 1982)", 1430 | "Address": { 1431 | "FirstLine": "339 Euston Road", 1432 | "City": "Regents Park", 1433 | "Postcode": "NW1 3AD", 1434 | "Latitude": 51.52435, 1435 | "Longitude": -0.139657 1436 | }, 1437 | "DefaultDisplayRank": 39, 1438 | "SeoName": "handmadesushi-nw1", 1439 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/23573.gif", 1440 | "IsCollection": true, 1441 | "IsDelivery": true, 1442 | "Cuisines": [ 1443 | { 1444 | "Name": "Sushi", 1445 | "SeoName": "sushi" 1446 | }, 1447 | { 1448 | "Name": "Japanese", 1449 | "SeoName": "japanese" 1450 | } 1451 | ], 1452 | "OpeningTime": "0001-01-01T00:00:00Z", 1453 | "DriveDistance": 2.7, 1454 | "DriveInfoCalculated": true, 1455 | "DeliveryCost": 0, 1456 | "MinimumDeliveryValue": 38, 1457 | "IsNew": false, 1458 | "RatingDetails": { 1459 | "Count": 840, 1460 | "StarRating": 4.5 1461 | }, 1462 | "OfferPercent": 0 1463 | }, 1464 | { 1465 | "Id": 41731, 1466 | "Name": "Cafe Don Quixote", 1467 | "Address": { 1468 | "FirstLine": "101 Kingsway", 1469 | "City": "London", 1470 | "Postcode": "WC2B 6QU", 1471 | "Latitude": 51.516386, 1472 | "Longitude": -0.120106 1473 | }, 1474 | "DefaultDisplayRank": 40, 1475 | "SeoName": "cafedonquixote-wc2b", 1476 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/41731.gif", 1477 | "IsCollection": true, 1478 | "IsDelivery": false, 1479 | "Cuisines": [ 1480 | { 1481 | "Name": "Italian", 1482 | "SeoName": "italian" 1483 | } 1484 | ], 1485 | "OpeningTime": "0001-01-01T00:00:00Z", 1486 | "DriveDistance": 1.1, 1487 | "DriveInfoCalculated": true, 1488 | "DeliveryCost": 0, 1489 | "MinimumDeliveryValue": 0, 1490 | "IsNew": false, 1491 | "RatingDetails": { 1492 | "Count": 1, 1493 | "StarRating": 6 1494 | }, 1495 | "OfferPercent": 0 1496 | }, 1497 | { 1498 | "Id": 20670, 1499 | "Name": "Flying Fish Sushi", 1500 | "Address": { 1501 | "FirstLine": "85 Scoresby Street", 1502 | "City": "London", 1503 | "Postcode": "SE1 0XN", 1504 | "Latitude": 51.504278, 1505 | "Longitude": -0.103645 1506 | }, 1507 | "DefaultDisplayRank": 41, 1508 | "SeoName": "flying-fish-sushi-se1", 1509 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/20670.gif", 1510 | "IsCollection": true, 1511 | "IsDelivery": true, 1512 | "Cuisines": [ 1513 | { 1514 | "Name": "Sushi", 1515 | "SeoName": "sushi" 1516 | }, 1517 | { 1518 | "Name": "Japanese", 1519 | "SeoName": "japanese" 1520 | } 1521 | ], 1522 | "OpeningTime": "0001-01-01T00:00:00Z", 1523 | "DriveDistance": 2, 1524 | "DriveInfoCalculated": true, 1525 | "DeliveryCost": 0, 1526 | "MinimumDeliveryValue": 0, 1527 | "IsNew": false, 1528 | "RatingDetails": { 1529 | "Count": 58, 1530 | "StarRating": 4.5 1531 | }, 1532 | "OfferPercent": 0 1533 | }, 1534 | { 1535 | "Id": 20694, 1536 | "Name": "Poppy Hana", 1537 | "Address": { 1538 | "FirstLine": "168 Jamaica Road", 1539 | "City": "London", 1540 | "Postcode": "SE16 4RT", 1541 | "Latitude": 51.498216, 1542 | "Longitude": -0.062331 1543 | }, 1544 | "DefaultDisplayRank": 42, 1545 | "SeoName": "poppyhana-se16", 1546 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/20694.gif", 1547 | "IsCollection": true, 1548 | "IsDelivery": false, 1549 | "Cuisines": [ 1550 | { 1551 | "Name": "Japanese", 1552 | "SeoName": "japanese" 1553 | }, 1554 | { 1555 | "Name": "Sushi", 1556 | "SeoName": "sushi" 1557 | } 1558 | ], 1559 | "OpeningTime": "2015-07-13T15:45:00Z", 1560 | "DriveDistance": 3.4, 1561 | "DriveInfoCalculated": true, 1562 | "DeliveryCost": 0, 1563 | "MinimumDeliveryValue": 15, 1564 | "IsNew": false, 1565 | "RatingDetails": { 1566 | "Count": 878, 1567 | "StarRating": 5 1568 | }, 1569 | "OfferPercent": 0 1570 | }, 1571 | { 1572 | "Id": 41764, 1573 | "Name": "Ninja Sushi", 1574 | "Address": { 1575 | "FirstLine": "17 Morland Richmond Road", 1576 | "City": "London", 1577 | "Postcode": "E8 3EY", 1578 | "Latitude": 51.542776, 1579 | "Longitude": -0.062429 1580 | }, 1581 | "DefaultDisplayRank": 43, 1582 | "SeoName": "ninjasushi-e8", 1583 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/41764.gif", 1584 | "IsCollection": true, 1585 | "IsDelivery": true, 1586 | "Cuisines": [ 1587 | { 1588 | "Name": "Sushi", 1589 | "SeoName": "sushi" 1590 | }, 1591 | { 1592 | "Name": "Japanese", 1593 | "SeoName": "japanese" 1594 | } 1595 | ], 1596 | "OpeningTime": "0001-01-01T00:00:00Z", 1597 | "DriveDistance": 3.5, 1598 | "DriveInfoCalculated": true, 1599 | "DeliveryCost": 0, 1600 | "MinimumDeliveryValue": 14, 1601 | "IsNew": false, 1602 | "RatingDetails": { 1603 | "Count": 316, 1604 | "StarRating": 5 1605 | }, 1606 | "OfferPercent": 0 1607 | }, 1608 | { 1609 | "Id": 31691, 1610 | "Name": "Limetree", 1611 | "Address": { 1612 | "FirstLine": "550 Kingsland Road", 1613 | "City": "London", 1614 | "Postcode": "E8 4AH", 1615 | "Latitude": 51.545212, 1616 | "Longitude": -0.075522 1617 | }, 1618 | "DefaultDisplayRank": 44, 1619 | "SeoName": "limetree-e8", 1620 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/31691.gif", 1621 | "IsCollection": true, 1622 | "IsDelivery": true, 1623 | "Cuisines": [ 1624 | { 1625 | "Name": "Indian", 1626 | "SeoName": "indian" 1627 | }, 1628 | { 1629 | "Name": "Bangladeshi", 1630 | "SeoName": "bangladeshi" 1631 | } 1632 | ], 1633 | "OpeningTime": "0001-01-01T00:00:00Z", 1634 | "DriveDistance": 3.5, 1635 | "DriveInfoCalculated": true, 1636 | "DeliveryCost": 0, 1637 | "MinimumDeliveryValue": 9, 1638 | "IsNew": false, 1639 | "RatingDetails": { 1640 | "Count": 931, 1641 | "StarRating": 5 1642 | }, 1643 | "OfferPercent": 20 1644 | }, 1645 | { 1646 | "Id": 1254, 1647 | "Name": "Papa John's Hoxton & City N1", 1648 | "Address": { 1649 | "FirstLine": "202 Hoxton Street, Hoxton and City", 1650 | "City": "London", 1651 | "Postcode": "N1 5LH", 1652 | "Latitude": 51.533396, 1653 | "Longitude": -0.079913 1654 | }, 1655 | "DefaultDisplayRank": 45, 1656 | "SeoName": "papajohnshoxton", 1657 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/1254.gif", 1658 | "IsCollection": true, 1659 | "IsDelivery": true, 1660 | "Cuisines": [ 1661 | { 1662 | "Name": "American", 1663 | "SeoName": "american" 1664 | }, 1665 | { 1666 | "Name": "Pizza", 1667 | "SeoName": "pizza" 1668 | } 1669 | ], 1670 | "OpeningTime": "2015-07-13T16:00:00Z", 1671 | "DriveDistance": 2, 1672 | "DriveInfoCalculated": true, 1673 | "DeliveryCost": 0, 1674 | "MinimumDeliveryValue": 15, 1675 | "IsNew": false, 1676 | "RatingDetails": { 1677 | "Count": 168, 1678 | "StarRating": 4.5 1679 | }, 1680 | "OfferPercent": 0 1681 | }, 1682 | { 1683 | "Id": 37471, 1684 | "Name": "Hoi An", 1685 | "Address": { 1686 | "FirstLine": "48 Hanbury Street", 1687 | "City": "London", 1688 | "Postcode": "E1 5JL", 1689 | "Latitude": 51.520184, 1690 | "Longitude": -0.070999 1691 | }, 1692 | "DefaultDisplayRank": 46, 1693 | "SeoName": "hoian-e1", 1694 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/37471.gif", 1695 | "IsCollection": true, 1696 | "IsDelivery": false, 1697 | "Cuisines": [ 1698 | { 1699 | "Name": "Vietnamese", 1700 | "SeoName": "vietnamese" 1701 | } 1702 | ], 1703 | "OpeningTime": "2015-07-13T16:00:00Z", 1704 | "DriveDistance": 2.2, 1705 | "DriveInfoCalculated": true, 1706 | "DeliveryCost": 0, 1707 | "MinimumDeliveryValue": 15, 1708 | "IsNew": false, 1709 | "RatingDetails": { 1710 | "Count": 87, 1711 | "StarRating": 4 1712 | }, 1713 | "OfferPercent": 0 1714 | }, 1715 | { 1716 | "Id": 14419, 1717 | "Name": "Mayva Oriental Cuisine", 1718 | "Address": { 1719 | "FirstLine": "149 Holloway Road", 1720 | "City": "London", 1721 | "Postcode": "N7 8LX", 1722 | "Latitude": 51.531711, 1723 | "Longitude": -0.111848 1724 | }, 1725 | "DefaultDisplayRank": 47, 1726 | "SeoName": "mayvaorientalcuisine", 1727 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/14419.gif", 1728 | "IsCollection": true, 1729 | "IsDelivery": true, 1730 | "Cuisines": [ 1731 | { 1732 | "Name": "Chinese", 1733 | "SeoName": "chinese" 1734 | } 1735 | ], 1736 | "OpeningTime": "0001-01-01T00:00:00Z", 1737 | "DriveDistance": 3.3, 1738 | "DriveInfoCalculated": true, 1739 | "DeliveryCost": 0, 1740 | "MinimumDeliveryValue": 15, 1741 | "IsNew": false, 1742 | "RatingDetails": { 1743 | "Count": 90, 1744 | "StarRating": 3.5 1745 | }, 1746 | "OfferPercent": 20 1747 | }, 1748 | { 1749 | "Id": 38540, 1750 | "Name": "Elite Peri Peri", 1751 | "Address": { 1752 | "FirstLine": "170 Jamaica Road", 1753 | "City": "London", 1754 | "Postcode": "SE16 4RT", 1755 | "Latitude": 51.498216, 1756 | "Longitude": -0.062331 1757 | }, 1758 | "DefaultDisplayRank": 48, 1759 | "SeoName": "eliteperiperi-se16", 1760 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/38540.gif", 1761 | "IsCollection": true, 1762 | "IsDelivery": true, 1763 | "Cuisines": [ 1764 | { 1765 | "Name": "Peri Peri", 1766 | "SeoName": "peri-peri" 1767 | }, 1768 | { 1769 | "Name": "Chicken", 1770 | "SeoName": "chicken" 1771 | } 1772 | ], 1773 | "OpeningTime": "0001-01-01T00:00:00Z", 1774 | "DriveDistance": 3.4, 1775 | "DriveInfoCalculated": true, 1776 | "DeliveryCost": 0, 1777 | "MinimumDeliveryValue": 12, 1778 | "IsNew": false, 1779 | "RatingDetails": { 1780 | "Count": 213, 1781 | "StarRating": 5 1782 | }, 1783 | "OfferPercent": 0 1784 | }, 1785 | { 1786 | "Id": 2067, 1787 | "Name": "Shikara", 1788 | "Address": { 1789 | "FirstLine": "65 Great Titchfield Street", 1790 | "City": "London", 1791 | "Postcode": "W1W 7PS", 1792 | "Latitude": 51.518876, 1793 | "Longitude": -0.140947 1794 | }, 1795 | "DefaultDisplayRank": 49, 1796 | "SeoName": "shikara-w1", 1797 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/2067.gif", 1798 | "IsCollection": false, 1799 | "IsDelivery": true, 1800 | "Cuisines": [ 1801 | { 1802 | "Name": "Indian", 1803 | "SeoName": "indian" 1804 | } 1805 | ], 1806 | "OpeningTime": "0001-01-01T00:00:00Z", 1807 | "DriveDistance": 2.5, 1808 | "DriveInfoCalculated": true, 1809 | "DeliveryCost": 0, 1810 | "MinimumDeliveryValue": 12, 1811 | "IsNew": false, 1812 | "RatingDetails": { 1813 | "Count": 435, 1814 | "StarRating": 4.5 1815 | }, 1816 | "OfferPercent": 20 1817 | }, 1818 | { 1819 | "Id": 28143, 1820 | "Name": "Wrap It Up", 1821 | "Address": { 1822 | "FirstLine": "233 Strand", 1823 | "City": "London", 1824 | "Postcode": "WC2R 1DA", 1825 | "Latitude": 51.51345, 1826 | "Longitude": -0.112012 1827 | }, 1828 | "DefaultDisplayRank": 50, 1829 | "SeoName": "wrap-it-up-wc2r", 1830 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/28143.gif", 1831 | "IsCollection": true, 1832 | "IsDelivery": false, 1833 | "Cuisines": [ 1834 | { 1835 | "Name": "Mexican", 1836 | "SeoName": "mexican" 1837 | } 1838 | ], 1839 | "OpeningTime": "2015-07-13T17:00:00Z", 1840 | "DriveDistance": 0.9, 1841 | "DriveInfoCalculated": true, 1842 | "DeliveryCost": 0, 1843 | "MinimumDeliveryValue": 15, 1844 | "IsNew": false, 1845 | "RatingDetails": { 1846 | "Count": 16, 1847 | "StarRating": 4 1848 | }, 1849 | "OfferPercent": 0 1850 | }, 1851 | { 1852 | "Id": 48080, 1853 | "Name": "Jasmine Garden SE1", 1854 | "Address": { 1855 | "FirstLine": "33 Bartholomew Street", 1856 | "City": "South East London", 1857 | "Postcode": "SE1 4AL", 1858 | "Latitude": 51.495328, 1859 | "Longitude": -0.088011 1860 | }, 1861 | "DefaultDisplayRank": 51, 1862 | "SeoName": "jasmine-garden-se1", 1863 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/48080.gif", 1864 | "IsCollection": true, 1865 | "IsDelivery": true, 1866 | "Cuisines": [ 1867 | { 1868 | "Name": "Chinese", 1869 | "SeoName": "chinese" 1870 | }, 1871 | { 1872 | "Name": "Thai", 1873 | "SeoName": "thai" 1874 | } 1875 | ], 1876 | "OpeningTime": "0001-01-01T00:00:00Z", 1877 | "DriveDistance": 2, 1878 | "DriveInfoCalculated": true, 1879 | "DeliveryCost": 0, 1880 | "MinimumDeliveryValue": 10, 1881 | "IsNew": false, 1882 | "RatingDetails": { 1883 | "Count": 113, 1884 | "StarRating": 3.5 1885 | }, 1886 | "OfferPercent": 0 1887 | }, 1888 | { 1889 | "Id": 206, 1890 | "Name": "City Pizza", 1891 | "Address": { 1892 | "FirstLine": "149 Holloway Road", 1893 | "City": "London", 1894 | "Postcode": "N7 8LX", 1895 | "Latitude": 51.549583, 1896 | "Longitude": -0.108682 1897 | }, 1898 | "DefaultDisplayRank": 52, 1899 | "SeoName": "citypizza", 1900 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/206.gif", 1901 | "IsCollection": true, 1902 | "IsDelivery": true, 1903 | "Cuisines": [ 1904 | { 1905 | "Name": "Pizza", 1906 | "SeoName": "pizza" 1907 | }, 1908 | { 1909 | "Name": "Burgers", 1910 | "SeoName": "burgers" 1911 | } 1912 | ], 1913 | "OpeningTime": "0001-01-01T00:00:00Z", 1914 | "DriveDistance": 3.3, 1915 | "DriveInfoCalculated": true, 1916 | "DeliveryCost": 0, 1917 | "MinimumDeliveryValue": 10, 1918 | "IsNew": false, 1919 | "RatingDetails": { 1920 | "Count": 327, 1921 | "StarRating": 4.5 1922 | }, 1923 | "OfferPercent": 0 1924 | }, 1925 | { 1926 | "Id": 17015, 1927 | "Name": "Curry Capital", 1928 | "Address": { 1929 | "FirstLine": "204 Brick Lane", 1930 | "City": "London", 1931 | "Postcode": "E1 6SA", 1932 | "Latitude": 51.524155, 1933 | "Longitude": -0.071364 1934 | }, 1935 | "DefaultDisplayRank": 53, 1936 | "SeoName": "currycapitale1", 1937 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/17015.gif", 1938 | "IsCollection": true, 1939 | "IsDelivery": true, 1940 | "Cuisines": [ 1941 | { 1942 | "Name": "Indian", 1943 | "SeoName": "indian" 1944 | } 1945 | ], 1946 | "OpeningTime": "0001-01-01T00:00:00Z", 1947 | "DriveDistance": 2.2, 1948 | "DriveInfoCalculated": true, 1949 | "DeliveryCost": 0, 1950 | "MinimumDeliveryValue": 10, 1951 | "IsNew": false, 1952 | "RatingDetails": { 1953 | "Count": 5, 1954 | "StarRating": 4 1955 | }, 1956 | "OfferPercent": 20 1957 | }, 1958 | { 1959 | "Id": 44831, 1960 | "Name": "Noura Restaurant", 1961 | "Address": { 1962 | "FirstLine": "16 Hobart Place", 1963 | "City": "London", 1964 | "Postcode": "SW1W 0HH", 1965 | "Latitude": 51.498263, 1966 | "Longitude": -0.148183 1967 | }, 1968 | "DefaultDisplayRank": 54, 1969 | "SeoName": "noura-sw1w", 1970 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/44831.gif", 1971 | "IsCollection": true, 1972 | "IsDelivery": true, 1973 | "Cuisines": [ 1974 | { 1975 | "Name": "Lebanese", 1976 | "SeoName": "lebanese" 1977 | }, 1978 | { 1979 | "Name": "Middle Eastern", 1980 | "SeoName": "middle-eastern" 1981 | } 1982 | ], 1983 | "OpeningTime": "0001-01-01T00:00:00Z", 1984 | "DriveDistance": 3.1, 1985 | "DriveInfoCalculated": true, 1986 | "DeliveryCost": 0, 1987 | "MinimumDeliveryValue": 70, 1988 | "IsNew": false, 1989 | "RatingDetails": { 1990 | "Count": 20, 1991 | "StarRating": 5 1992 | }, 1993 | "OfferPercent": 0 1994 | }, 1995 | { 1996 | "Id": 42727, 1997 | "Name": "Go Chisou", 1998 | "Address": { 1999 | "FirstLine": "3 Princes Street", 2000 | "City": "London", 2001 | "Postcode": "W1B 2LE", 2002 | "Latitude": 51.514686, 2003 | "Longitude": -0.142688 2004 | }, 2005 | "DefaultDisplayRank": 55, 2006 | "SeoName": "gochisou-w1b", 2007 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/42727.gif", 2008 | "IsCollection": true, 2009 | "IsDelivery": false, 2010 | "Cuisines": [ 2011 | { 2012 | "Name": "Japanese", 2013 | "SeoName": "japanese" 2014 | }, 2015 | { 2016 | "Name": "Sushi", 2017 | "SeoName": "sushi" 2018 | } 2019 | ], 2020 | "OpeningTime": "0001-01-01T00:00:00Z", 2021 | "DriveDistance": 2.3, 2022 | "DriveInfoCalculated": true, 2023 | "DeliveryCost": 0, 2024 | "MinimumDeliveryValue": 0, 2025 | "IsNew": false, 2026 | "RatingDetails": { 2027 | "Count": 15, 2028 | "StarRating": 4.5 2029 | }, 2030 | "OfferPercent": 0 2031 | }, 2032 | { 2033 | "Id": 38298, 2034 | "Name": "Swift Pizza & Kebab House", 2035 | "Address": { 2036 | "FirstLine": "479 Cambridge Heath Road", 2037 | "City": "London", 2038 | "Postcode": "E2 9BU", 2039 | "Latitude": 51.533414, 2040 | "Longitude": -0.05752 2041 | }, 2042 | "DefaultDisplayRank": 56, 2043 | "SeoName": "swiftkebabhouse-e2", 2044 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/38298.gif", 2045 | "IsCollection": true, 2046 | "IsDelivery": true, 2047 | "Cuisines": [ 2048 | { 2049 | "Name": "Kebab", 2050 | "SeoName": "kebabs" 2051 | } 2052 | ], 2053 | "OpeningTime": "0001-01-01T00:00:00Z", 2054 | "DriveDistance": 2.6, 2055 | "DriveInfoCalculated": true, 2056 | "DeliveryCost": 0, 2057 | "MinimumDeliveryValue": 10, 2058 | "IsNew": false, 2059 | "RatingDetails": { 2060 | "Count": 166, 2061 | "StarRating": 4 2062 | }, 2063 | "OfferPercent": 20 2064 | }, 2065 | { 2066 | "Id": 36885, 2067 | "Name": "Handmade Sushi (Covent Garden)", 2068 | "Address": { 2069 | "FirstLine": "43 Endell Street, Covent Garden, Westminster", 2070 | "City": "London", 2071 | "Postcode": "WC2H 9BA", 2072 | "Latitude": 51.514521, 2073 | "Longitude": -0.124922 2074 | }, 2075 | "DefaultDisplayRank": 57, 2076 | "SeoName": "home-made-sushi-wc2h", 2077 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/36885.gif", 2078 | "IsCollection": true, 2079 | "IsDelivery": true, 2080 | "Cuisines": [ 2081 | { 2082 | "Name": "Sushi", 2083 | "SeoName": "sushi" 2084 | }, 2085 | { 2086 | "Name": "Japanese", 2087 | "SeoName": "japanese" 2088 | } 2089 | ], 2090 | "OpeningTime": "0001-01-01T00:00:00Z", 2091 | "DriveDistance": 1.6, 2092 | "DriveInfoCalculated": true, 2093 | "DeliveryCost": 0, 2094 | "MinimumDeliveryValue": 35, 2095 | "IsNew": false, 2096 | "RatingDetails": { 2097 | "Count": 31, 2098 | "StarRating": 4 2099 | }, 2100 | "OfferPercent": 0 2101 | }, 2102 | { 2103 | "Id": 103, 2104 | "Name": "Pizza Pizza", 2105 | "Address": { 2106 | "FirstLine": "479 Cambridge Heath Road", 2107 | "City": "Tower Hamlets", 2108 | "Postcode": "E2 9BU", 2109 | "Latitude": 51.533414, 2110 | "Longitude": -0.05752 2111 | }, 2112 | "DefaultDisplayRank": 58, 2113 | "SeoName": "pizzapizza", 2114 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/103.gif", 2115 | "IsCollection": true, 2116 | "IsDelivery": true, 2117 | "Cuisines": [ 2118 | { 2119 | "Name": "Italian", 2120 | "SeoName": "italian" 2121 | }, 2122 | { 2123 | "Name": "Pizza", 2124 | "SeoName": "pizza" 2125 | } 2126 | ], 2127 | "OpeningTime": "2015-07-13T16:00:00Z", 2128 | "DriveDistance": 2.6, 2129 | "DriveInfoCalculated": true, 2130 | "DeliveryCost": 0, 2131 | "MinimumDeliveryValue": 8, 2132 | "IsNew": false, 2133 | "RatingDetails": { 2134 | "Count": 594, 2135 | "StarRating": 4 2136 | }, 2137 | "OfferPercent": 0 2138 | }, 2139 | { 2140 | "Id": 530, 2141 | "Name": "Pizza Go Go SE16", 2142 | "Address": { 2143 | "FirstLine": "69 Southwark Park Road", 2144 | "City": "London", 2145 | "Postcode": "SE16 3TY", 2146 | "Latitude": 51.492908, 2147 | "Longitude": -0.070378 2148 | }, 2149 | "DefaultDisplayRank": 59, 2150 | "SeoName": "pizzagogose16", 2151 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/530.gif", 2152 | "IsCollection": true, 2153 | "IsDelivery": true, 2154 | "Cuisines": [ 2155 | { 2156 | "Name": "Italian", 2157 | "SeoName": "italian" 2158 | }, 2159 | { 2160 | "Name": "Pizza", 2161 | "SeoName": "pizza" 2162 | } 2163 | ], 2164 | "OpeningTime": "0001-01-01T00:00:00Z", 2165 | "DriveDistance": 3.4, 2166 | "DriveInfoCalculated": true, 2167 | "DeliveryCost": 0, 2168 | "MinimumDeliveryValue": 7, 2169 | "IsNew": false, 2170 | "RatingDetails": { 2171 | "Count": 601, 2172 | "StarRating": 4.5 2173 | }, 2174 | "OfferPercent": 20 2175 | }, 2176 | { 2177 | "Id": 37744, 2178 | "Name": "Aldwych Cafe", 2179 | "Address": { 2180 | "FirstLine": "47 Aldwych", 2181 | "City": "London", 2182 | "Postcode": "WC2B 4DR", 2183 | "Latitude": 51.512642, 2184 | "Longitude": -0.119367 2185 | }, 2186 | "DefaultDisplayRank": 60, 2187 | "SeoName": "aldwychcafe-wc2b", 2188 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/37744.gif", 2189 | "IsCollection": true, 2190 | "IsDelivery": false, 2191 | "Cuisines": [ 2192 | { 2193 | "Name": "Sandwiches", 2194 | "SeoName": "sandwiches" 2195 | }, 2196 | { 2197 | "Name": "Cakes", 2198 | "SeoName": "cakes" 2199 | } 2200 | ], 2201 | "OpeningTime": "0001-01-01T00:00:00Z", 2202 | "DriveDistance": 1.1, 2203 | "DriveInfoCalculated": true, 2204 | "DeliveryCost": 0, 2205 | "MinimumDeliveryValue": 0, 2206 | "IsNew": false, 2207 | "RatingDetails": { 2208 | "Count": 1, 2209 | "StarRating": 5 2210 | }, 2211 | "OfferPercent": 0 2212 | }, 2213 | { 2214 | "Id": 35730, 2215 | "Name": "Bon Appetit", 2216 | "Address": { 2217 | "FirstLine": "133 Leaman Street", 2218 | "City": "London", 2219 | "Postcode": "E1 8EY", 2220 | "Latitude": 51.511712, 2221 | "Longitude": -0.068763 2222 | }, 2223 | "DefaultDisplayRank": 61, 2224 | "SeoName": "Bonappetit-e1", 2225 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/35730.gif", 2226 | "IsCollection": true, 2227 | "IsDelivery": true, 2228 | "Cuisines": [ 2229 | { 2230 | "Name": "Lebanese", 2231 | "SeoName": "lebanese" 2232 | } 2233 | ], 2234 | "OpeningTime": "0001-01-01T00:00:00Z", 2235 | "DriveDistance": 2.2, 2236 | "DriveInfoCalculated": true, 2237 | "DeliveryCost": 0, 2238 | "MinimumDeliveryValue": 14.5, 2239 | "IsNew": false, 2240 | "RatingDetails": { 2241 | "Count": 22, 2242 | "StarRating": 4 2243 | }, 2244 | "OfferPercent": 0 2245 | }, 2246 | { 2247 | "Id": 48081, 2248 | "Name": "Red Planet Pizza SE1", 2249 | "Address": { 2250 | "FirstLine": "33 Bartholomew Street", 2251 | "City": "South East London", 2252 | "Postcode": "SE1 4AL", 2253 | "Latitude": 51.495328, 2254 | "Longitude": -0.088011 2255 | }, 2256 | "DefaultDisplayRank": 62, 2257 | "SeoName": "red-planet-pizza-se1", 2258 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/48081.gif", 2259 | "IsCollection": true, 2260 | "IsDelivery": true, 2261 | "Cuisines": [ 2262 | { 2263 | "Name": "Pizza", 2264 | "SeoName": "pizza" 2265 | }, 2266 | { 2267 | "Name": "Italian", 2268 | "SeoName": "italian" 2269 | } 2270 | ], 2271 | "OpeningTime": "0001-01-01T00:00:00Z", 2272 | "DriveDistance": 2, 2273 | "DriveInfoCalculated": true, 2274 | "DeliveryCost": 0, 2275 | "MinimumDeliveryValue": 10, 2276 | "IsNew": false, 2277 | "RatingDetails": { 2278 | "Count": 8, 2279 | "StarRating": 3.5 2280 | }, 2281 | "OfferPercent": 0 2282 | }, 2283 | { 2284 | "Id": 42316, 2285 | "Name": "H Chicken & Grill", 2286 | "Address": { 2287 | "FirstLine": "89 Long Lane", 2288 | "City": "London", 2289 | "Postcode": "SE1 4PH", 2290 | "Latitude": 51.500757, 2291 | "Longitude": -0.088936 2292 | }, 2293 | "DefaultDisplayRank": 63, 2294 | "SeoName": "h-chickenandgrill-se1", 2295 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/42316.gif", 2296 | "IsCollection": true, 2297 | "IsDelivery": true, 2298 | "Cuisines": [ 2299 | { 2300 | "Name": "Kebab", 2301 | "SeoName": "kebabs" 2302 | }, 2303 | { 2304 | "Name": "Chicken", 2305 | "SeoName": "chicken" 2306 | } 2307 | ], 2308 | "OpeningTime": "0001-01-01T00:00:00Z", 2309 | "DriveDistance": 2, 2310 | "DriveInfoCalculated": true, 2311 | "DeliveryCost": 0, 2312 | "MinimumDeliveryValue": 10, 2313 | "IsNew": false, 2314 | "RatingDetails": { 2315 | "Count": 22, 2316 | "StarRating": 3.5 2317 | }, 2318 | "OfferPercent": 0 2319 | }, 2320 | { 2321 | "Id": 5943, 2322 | "Name": "Sizzling Bombay", 2323 | "Address": { 2324 | "FirstLine": "132 Drummond Street", 2325 | "City": "Regents Park", 2326 | "Postcode": "NW1 2PA", 2327 | "Latitude": 51.526769, 2328 | "Longitude": -0.137944 2329 | }, 2330 | "DefaultDisplayRank": 64, 2331 | "SeoName": "sizzling-bombay", 2332 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/5943.gif", 2333 | "IsCollection": true, 2334 | "IsDelivery": false, 2335 | "Cuisines": [ 2336 | { 2337 | "Name": "Indian", 2338 | "SeoName": "indian" 2339 | } 2340 | ], 2341 | "OpeningTime": "2015-07-13T17:00:00Z", 2342 | "DriveDistance": 2.7, 2343 | "DriveInfoCalculated": true, 2344 | "DeliveryCost": 0, 2345 | "MinimumDeliveryValue": 15, 2346 | "IsNew": false, 2347 | "RatingDetails": { 2348 | "Count": 54, 2349 | "StarRating": 4.5 2350 | }, 2351 | "OfferPercent": 0 2352 | }, 2353 | { 2354 | "Id": 51424, 2355 | "Name": "Mas Q Menos City", 2356 | "Address": { 2357 | "FirstLine": "70 Mark Lane", 2358 | "City": "London", 2359 | "Postcode": "EC3R 7LQ", 2360 | "Latitude": 51.511443, 2361 | "Longitude": -0.079799 2362 | }, 2363 | "DefaultDisplayRank": 65, 2364 | "SeoName": "mas-q-menos-city-london", 2365 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/51424.gif", 2366 | "IsCollection": true, 2367 | "IsDelivery": false, 2368 | "Cuisines": [ 2369 | { 2370 | "Name": "Spanish", 2371 | "SeoName": "spanish" 2372 | }, 2373 | { 2374 | "Name": "Tapas", 2375 | "SeoName": "tapas" 2376 | } 2377 | ], 2378 | "OpeningTime": "0001-01-01T00:00:00Z", 2379 | "DriveDistance": 1, 2380 | "DriveInfoCalculated": true, 2381 | "DeliveryCost": 0, 2382 | "MinimumDeliveryValue": 0, 2383 | "IsNew": false, 2384 | "RatingDetails": { 2385 | "Count": 0, 2386 | "StarRating": 0 2387 | }, 2388 | "OfferPercent": 0 2389 | }, 2390 | { 2391 | "Id": 3861, 2392 | "Name": "Pizza Hotline", 2393 | "Address": { 2394 | "FirstLine": "157 Dulwich Road Herne Hill", 2395 | "City": "Dulwich", 2396 | "Postcode": "SE24 0NG", 2397 | "Latitude": 51.452776, 2398 | "Longitude": -0.103002 2399 | }, 2400 | "DefaultDisplayRank": 66, 2401 | "SeoName": "pizza-hotline", 2402 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/3861.gif", 2403 | "IsCollection": true, 2404 | "IsDelivery": true, 2405 | "Cuisines": [ 2406 | { 2407 | "Name": "Pizza", 2408 | "SeoName": "pizza" 2409 | }, 2410 | { 2411 | "Name": "Italian", 2412 | "SeoName": "italian" 2413 | } 2414 | ], 2415 | "OpeningTime": "0001-01-01T00:00:00Z", 2416 | "DriveDistance": 5.2, 2417 | "DriveInfoCalculated": true, 2418 | "DeliveryCost": 5, 2419 | "MinimumDeliveryValue": 20, 2420 | "IsNew": false, 2421 | "RatingDetails": { 2422 | "Count": 263, 2423 | "StarRating": 5 2424 | }, 2425 | "OfferPercent": 0 2426 | }, 2427 | { 2428 | "Id": 44674, 2429 | "Name": "Nanis", 2430 | "Address": { 2431 | "FirstLine": "134 Great Portland Street", 2432 | "City": "London", 2433 | "Postcode": "W1W 6PX", 2434 | "Latitude": 51.520052, 2435 | "Longitude": -0.142499 2436 | }, 2437 | "DefaultDisplayRank": 67, 2438 | "SeoName": "nanis-w1w", 2439 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/44674.gif", 2440 | "IsCollection": true, 2441 | "IsDelivery": true, 2442 | "Cuisines": [ 2443 | { 2444 | "Name": "Breakfast", 2445 | "SeoName": "breakfast" 2446 | }, 2447 | { 2448 | "Name": "Sandwiches", 2449 | "SeoName": "sandwiches" 2450 | } 2451 | ], 2452 | "OpeningTime": "0001-01-01T00:00:00Z", 2453 | "DriveDistance": 2.5, 2454 | "DriveInfoCalculated": true, 2455 | "DeliveryCost": 0, 2456 | "MinimumDeliveryValue": 20, 2457 | "IsNew": false, 2458 | "RatingDetails": { 2459 | "Count": 32, 2460 | "StarRating": 4 2461 | }, 2462 | "OfferPercent": 0 2463 | }, 2464 | { 2465 | "Id": 11054, 2466 | "Name": "Barbican Express Indian", 2467 | "Address": { 2468 | "FirstLine": "131 Whitecross Street", 2469 | "City": "London", 2470 | "Postcode": "EC1Y 8JL", 2471 | "Latitude": 51.523291, 2472 | "Longitude": -0.093269 2473 | }, 2474 | "DefaultDisplayRank": 68, 2475 | "SeoName": "barbicanexpress", 2476 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/11054.gif", 2477 | "IsCollection": true, 2478 | "IsDelivery": true, 2479 | "Cuisines": [ 2480 | { 2481 | "Name": "Indian", 2482 | "SeoName": "indian" 2483 | } 2484 | ], 2485 | "OpeningTime": "0001-01-01T00:00:00Z", 2486 | "DriveDistance": 1.2, 2487 | "DriveInfoCalculated": true, 2488 | "DeliveryCost": 0, 2489 | "MinimumDeliveryValue": 10, 2490 | "IsNew": false, 2491 | "RatingDetails": { 2492 | "Count": 71, 2493 | "StarRating": 4 2494 | }, 2495 | "OfferPercent": 0 2496 | }, 2497 | { 2498 | "Id": 42742, 2499 | "Name": "My Lunch Box - Collection Only", 2500 | "Address": { 2501 | "FirstLine": "6 Minories", 2502 | "City": "London", 2503 | "Postcode": "EC3N 1BJ", 2504 | "Latitude": 51.513597, 2505 | "Longitude": -0.075658 2506 | }, 2507 | "DefaultDisplayRank": 69, 2508 | "SeoName": "mylunchbox-ec3n", 2509 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/42742.gif", 2510 | "IsCollection": true, 2511 | "IsDelivery": false, 2512 | "Cuisines": [ 2513 | { 2514 | "Name": "Healthy", 2515 | "SeoName": "healthy" 2516 | }, 2517 | { 2518 | "Name": "Sandwiches", 2519 | "SeoName": "sandwiches" 2520 | } 2521 | ], 2522 | "OpeningTime": "0001-01-01T00:00:00Z", 2523 | "DriveDistance": 1.3, 2524 | "DriveInfoCalculated": true, 2525 | "DeliveryCost": 0, 2526 | "MinimumDeliveryValue": 0, 2527 | "IsNew": false, 2528 | "RatingDetails": { 2529 | "Count": 0, 2530 | "StarRating": 0 2531 | }, 2532 | "OfferPercent": 0 2533 | }, 2534 | { 2535 | "Id": 51042, 2536 | "Name": "Runners Pizza", 2537 | "Address": { 2538 | "FirstLine": "161 New Kent Road", 2539 | "City": "LONDON", 2540 | "Postcode": "SE1 4AG", 2541 | "Latitude": 51.494325, 2542 | "Longitude": -0.09213 2543 | }, 2544 | "DefaultDisplayRank": 70, 2545 | "SeoName": "runners-pizza-southwark", 2546 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/51042.gif", 2547 | "IsCollection": true, 2548 | "IsDelivery": false, 2549 | "Cuisines": [ 2550 | { 2551 | "Name": "Pizza", 2552 | "SeoName": "pizza" 2553 | }, 2554 | { 2555 | "Name": "Chicken", 2556 | "SeoName": "chicken" 2557 | } 2558 | ], 2559 | "OpeningTime": "0001-01-01T00:00:00Z", 2560 | "DriveDistance": 2, 2561 | "DriveInfoCalculated": true, 2562 | "DeliveryCost": 0, 2563 | "MinimumDeliveryValue": 0, 2564 | "IsNew": false, 2565 | "RatingDetails": { 2566 | "Count": 0, 2567 | "StarRating": 0 2568 | }, 2569 | "OfferPercent": 0 2570 | }, 2571 | { 2572 | "Id": 38512, 2573 | "Name": "Cafe Mode - Collection Only", 2574 | "Address": { 2575 | "FirstLine": "57 - 59 Endell Street", 2576 | "City": "London", 2577 | "Postcode": "WC2H 9AL", 2578 | "Latitude": null, 2579 | "Longitude": null 2580 | }, 2581 | "DefaultDisplayRank": 71, 2582 | "SeoName": "cafemode-wc2h", 2583 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/38512.gif", 2584 | "IsCollection": true, 2585 | "IsDelivery": false, 2586 | "Cuisines": [ 2587 | { 2588 | "Name": "Mediterranean", 2589 | "SeoName": "mediterranean" 2590 | }, 2591 | { 2592 | "Name": "Italian", 2593 | "SeoName": "italian" 2594 | } 2595 | ], 2596 | "OpeningTime": "0001-01-01T00:00:00Z", 2597 | "DriveDistance": 1.6, 2598 | "DriveInfoCalculated": true, 2599 | "DeliveryCost": 0, 2600 | "MinimumDeliveryValue": 0, 2601 | "IsNew": false, 2602 | "RatingDetails": { 2603 | "Count": 0, 2604 | "StarRating": 0 2605 | }, 2606 | "OfferPercent": 0 2607 | }, 2608 | { 2609 | "Id": 41785, 2610 | "Name": "Taro Sushi Noodle Bar", 2611 | "Address": { 2612 | "FirstLine": "61 Brewer Street", 2613 | "City": "London", 2614 | "Postcode": "W1F 9UN", 2615 | "Latitude": 51.511416, 2616 | "Longitude": -0.1355 2617 | }, 2618 | "DefaultDisplayRank": 72, 2619 | "SeoName": "tarosushi-w1f", 2620 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/41785.gif", 2621 | "IsCollection": true, 2622 | "IsDelivery": false, 2623 | "Cuisines": [ 2624 | { 2625 | "Name": "Japanese", 2626 | "SeoName": "japanese" 2627 | }, 2628 | { 2629 | "Name": "Sushi", 2630 | "SeoName": "sushi" 2631 | } 2632 | ], 2633 | "OpeningTime": "0001-01-01T00:00:00Z", 2634 | "DriveDistance": 2.3, 2635 | "DriveInfoCalculated": true, 2636 | "DeliveryCost": 0, 2637 | "MinimumDeliveryValue": 0, 2638 | "IsNew": false, 2639 | "RatingDetails": { 2640 | "Count": 1, 2641 | "StarRating": 5 2642 | }, 2643 | "OfferPercent": 0 2644 | }, 2645 | { 2646 | "Id": 47398, 2647 | "Name": "Motown - Collection Only", 2648 | "Address": { 2649 | "FirstLine": "58 Fieldate Street", 2650 | "City": "London", 2651 | "Postcode": "E1 1JN", 2652 | "Latitude": 51.516617, 2653 | "Longitude": -0.064635 2654 | }, 2655 | "DefaultDisplayRank": 73, 2656 | "SeoName": "motown-e1", 2657 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/47398.gif", 2658 | "IsCollection": true, 2659 | "IsDelivery": false, 2660 | "Cuisines": [ 2661 | { 2662 | "Name": "Desserts", 2663 | "SeoName": "desserts" 2664 | }, 2665 | { 2666 | "Name": "Cakes", 2667 | "SeoName": "cakes" 2668 | } 2669 | ], 2670 | "OpeningTime": "0001-01-01T00:00:00Z", 2671 | "DriveDistance": 2.2, 2672 | "DriveInfoCalculated": true, 2673 | "DeliveryCost": 0, 2674 | "MinimumDeliveryValue": 0, 2675 | "IsNew": false, 2676 | "RatingDetails": { 2677 | "Count": 0, 2678 | "StarRating": 0 2679 | }, 2680 | "OfferPercent": 0 2681 | }, 2682 | { 2683 | "Id": 45252, 2684 | "Name": "Sajjad Grills & Restaurant", 2685 | "Address": { 2686 | "FirstLine": "83 New Road", 2687 | "City": "London", 2688 | "Postcode": "E1 1HH", 2689 | "Latitude": 51.516692, 2690 | "Longitude": -0.062657 2691 | }, 2692 | "DefaultDisplayRank": 74, 2693 | "SeoName": "sajjadgrills-e1", 2694 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/45252.gif", 2695 | "IsCollection": true, 2696 | "IsDelivery": false, 2697 | "Cuisines": [ 2698 | { 2699 | "Name": "Pakistani", 2700 | "SeoName": "pakistani" 2701 | }, 2702 | { 2703 | "Name": "Curry", 2704 | "SeoName": "curry" 2705 | } 2706 | ], 2707 | "OpeningTime": "0001-01-01T00:00:00Z", 2708 | "DriveDistance": 2.2, 2709 | "DriveInfoCalculated": true, 2710 | "DeliveryCost": 0, 2711 | "MinimumDeliveryValue": 0, 2712 | "IsNew": false, 2713 | "RatingDetails": { 2714 | "Count": 0, 2715 | "StarRating": 0 2716 | }, 2717 | "OfferPercent": 0 2718 | }, 2719 | { 2720 | "Id": 45544, 2721 | "Name": "Piadina Pronta", 2722 | "Address": { 2723 | "FirstLine": "Upmarket-Trumans Brewery, Brick Lane", 2724 | "City": "London", 2725 | "Postcode": "E1 6QR", 2726 | "Latitude": 51.520227, 2727 | "Longitude": -0.073087 2728 | }, 2729 | "DefaultDisplayRank": 75, 2730 | "SeoName": "piadinapronto-e1", 2731 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/45544.gif", 2732 | "IsCollection": true, 2733 | "IsDelivery": true, 2734 | "Cuisines": [ 2735 | { 2736 | "Name": "Italian", 2737 | "SeoName": "italian" 2738 | }, 2739 | { 2740 | "Name": "Pizza", 2741 | "SeoName": "pizza" 2742 | } 2743 | ], 2744 | "OpeningTime": "0001-01-01T00:00:00Z", 2745 | "DriveDistance": 2.2, 2746 | "DriveInfoCalculated": true, 2747 | "DeliveryCost": 0, 2748 | "MinimumDeliveryValue": 10, 2749 | "IsNew": false, 2750 | "RatingDetails": { 2751 | "Count": 0, 2752 | "StarRating": 0 2753 | }, 2754 | "OfferPercent": 0 2755 | }, 2756 | { 2757 | "Id": 46888, 2758 | "Name": "Damascu Bite - Collection Only", 2759 | "Address": { 2760 | "FirstLine": "119-121 Brick Lane", 2761 | "City": "London", 2762 | "Postcode": "E1 6SE", 2763 | "Latitude": 51.522345, 2764 | "Longitude": -0.071743 2765 | }, 2766 | "DefaultDisplayRank": 76, 2767 | "SeoName": "damascubite-e1", 2768 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/46888.gif", 2769 | "IsCollection": true, 2770 | "IsDelivery": false, 2771 | "Cuisines": [ 2772 | { 2773 | "Name": "Lebanese", 2774 | "SeoName": "lebanese" 2775 | }, 2776 | { 2777 | "Name": "Syrian", 2778 | "SeoName": "syrian" 2779 | } 2780 | ], 2781 | "OpeningTime": "0001-01-01T00:00:00Z", 2782 | "DriveDistance": 2.2, 2783 | "DriveInfoCalculated": true, 2784 | "DeliveryCost": 0, 2785 | "MinimumDeliveryValue": 0, 2786 | "IsNew": false, 2787 | "RatingDetails": { 2788 | "Count": 0, 2789 | "StarRating": 0 2790 | }, 2791 | "OfferPercent": 0 2792 | }, 2793 | { 2794 | "Id": 47108, 2795 | "Name": "Govinda's - Collection Only", 2796 | "Address": { 2797 | "FirstLine": "9-10 Soho Street", 2798 | "City": "London", 2799 | "Postcode": "W1D 3DL", 2800 | "Latitude": 51.515869, 2801 | "Longitude": -0.132782 2802 | }, 2803 | "DefaultDisplayRank": 77, 2804 | "SeoName": "govindas-w1d", 2805 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/47108.gif", 2806 | "IsCollection": true, 2807 | "IsDelivery": false, 2808 | "Cuisines": [ 2809 | { 2810 | "Name": "Italian", 2811 | "SeoName": "italian" 2812 | }, 2813 | { 2814 | "Name": "Vegetarian", 2815 | "SeoName": "vegetarian" 2816 | } 2817 | ], 2818 | "OpeningTime": "0001-01-01T00:00:00Z", 2819 | "DriveDistance": 2, 2820 | "DriveInfoCalculated": true, 2821 | "DeliveryCost": 0, 2822 | "MinimumDeliveryValue": 0, 2823 | "IsNew": false, 2824 | "RatingDetails": { 2825 | "Count": 0, 2826 | "StarRating": 0 2827 | }, 2828 | "OfferPercent": 0 2829 | }, 2830 | { 2831 | "Id": 44293, 2832 | "Name": "La Polenteria - Collection Only", 2833 | "Address": { 2834 | "FirstLine": "64 Old Compton Street", 2835 | "City": "London", 2836 | "Postcode": "W1D 4UQ", 2837 | "Latitude": 51.512784, 2838 | "Longitude": -0.13275 2839 | }, 2840 | "DefaultDisplayRank": 78, 2841 | "SeoName": "lapolenteria-w1d", 2842 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/44293.gif", 2843 | "IsCollection": true, 2844 | "IsDelivery": false, 2845 | "Cuisines": [ 2846 | { 2847 | "Name": "Italian", 2848 | "SeoName": "italian" 2849 | } 2850 | ], 2851 | "OpeningTime": "0001-01-01T00:00:00Z", 2852 | "DriveDistance": 2, 2853 | "DriveInfoCalculated": true, 2854 | "DeliveryCost": 0, 2855 | "MinimumDeliveryValue": 0, 2856 | "IsNew": false, 2857 | "RatingDetails": { 2858 | "Count": 0, 2859 | "StarRating": 0 2860 | }, 2861 | "OfferPercent": 0 2862 | }, 2863 | { 2864 | "Id": 27765, 2865 | "Name": "Hoxton Chicken N Pizza", 2866 | "Address": { 2867 | "FirstLine": "94 Hoxton Street", 2868 | "City": "London", 2869 | "Postcode": "N1 6LP", 2870 | "Latitude": 51.530297, 2871 | "Longitude": -0.080116 2872 | }, 2873 | "DefaultDisplayRank": 79, 2874 | "SeoName": "hoxtonpizzanchicken-n1", 2875 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/27765.gif", 2876 | "IsCollection": true, 2877 | "IsDelivery": true, 2878 | "Cuisines": [ 2879 | { 2880 | "Name": "Pizza", 2881 | "SeoName": "pizza" 2882 | } 2883 | ], 2884 | "OpeningTime": "0001-01-01T00:00:00Z", 2885 | "DriveDistance": 2, 2886 | "DriveInfoCalculated": true, 2887 | "DeliveryCost": 0, 2888 | "MinimumDeliveryValue": 10, 2889 | "IsNew": false, 2890 | "RatingDetails": { 2891 | "Count": 5, 2892 | "StarRating": 2 2893 | }, 2894 | "OfferPercent": 30 2895 | }, 2896 | { 2897 | "Id": 42679, 2898 | "Name": "The Bell House Pub & Restaurant", 2899 | "Address": { 2900 | "FirstLine": "91 Bell Street", 2901 | "City": "London", 2902 | "Postcode": "NW1 6TL", 2903 | "Latitude": 51.522189, 2904 | "Longitude": -0.165692 2905 | }, 2906 | "DefaultDisplayRank": 80, 2907 | "SeoName": "thebellhouse-nw1", 2908 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/42679.gif", 2909 | "IsCollection": true, 2910 | "IsDelivery": false, 2911 | "Cuisines": [ 2912 | { 2913 | "Name": "Breakfast", 2914 | "SeoName": "breakfast" 2915 | }, 2916 | { 2917 | "Name": "Fish & Chips", 2918 | "SeoName": "fish-and-chips" 2919 | } 2920 | ], 2921 | "OpeningTime": "0001-01-01T00:00:00Z", 2922 | "DriveDistance": 2.7, 2923 | "DriveInfoCalculated": true, 2924 | "DeliveryCost": 0, 2925 | "MinimumDeliveryValue": 0, 2926 | "IsNew": false, 2927 | "RatingDetails": { 2928 | "Count": 0, 2929 | "StarRating": 0 2930 | }, 2931 | "OfferPercent": 0 2932 | }, 2933 | { 2934 | "Id": 47400, 2935 | "Name": "Motown", 2936 | "Address": { 2937 | "FirstLine": "157 Bethnalgreen Road", 2938 | "City": "London", 2939 | "Postcode": "E2 7DG", 2940 | "Latitude": 51.525392, 2941 | "Longitude": -0.07111 2942 | }, 2943 | "DefaultDisplayRank": 81, 2944 | "SeoName": "motown-e2", 2945 | "LogoUrl": "https://d30v2pzvrfyzpo.cloudfront.net/uk/images/restaurants/47400.gif", 2946 | "IsCollection": true, 2947 | "IsDelivery": false, 2948 | "Cuisines": [ 2949 | { 2950 | "Name": "Desserts", 2951 | "SeoName": "desserts" 2952 | }, 2953 | { 2954 | "Name": "Cakes", 2955 | "SeoName": "cakes" 2956 | } 2957 | ], 2958 | "OpeningTime": "0001-01-01T00:00:00Z", 2959 | "DriveDistance": 2.6, 2960 | "DriveInfoCalculated": true, 2961 | "DeliveryCost": 0, 2962 | "MinimumDeliveryValue": 0, 2963 | "IsNew": false, 2964 | "RatingDetails": { 2965 | "Count": 0, 2966 | "StarRating": 0 2967 | }, 2968 | "OfferPercent": 0 2969 | } 2970 | ] 2971 | } 2972 | ``` --------------------------------------------------------------------------------