> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /deliveroo/restaurants/search

> Find Deliveroo (deliveroo.co.uk) restaurants and stores delivering to a location (latitude/longitude) with optional filters: free-text keyword, fulfillment method, sort order, cuisines, dietary options, meal deals, top-rated, fast delivery, hygiene rating and Deliveroo's Choice. Returns cards with name, rating, review count, distance, delivery time, offers and image.

**Price:** 20 credits

**💡 AI Hint:** Find Deliveroo (deliveroo.co.uk) restaurants and grocery stores delivering to a location. Provide latitude and longitude (of the delivery address) and count. Optional: keyword (free-text restaurant or dish name), fulfillment_method (delivery/pickup), sort (recommended/distance/fastest/rating), cuisines (one or more, they stack), dietary (vegan, halal, gluten free, ...), meal_deals, top_rated, under_30_min, hygiene_rating, deliveroo_choice. Each result has id, name, url, image, rating, rating_label, review_count, distance (miles), delivery_time (minutes), is_deliveroo_choice, is_sponsored and offers. Use the restaurant url with the restaurants endpoint for the full menu.



## OpenAPI

````yaml /openapi-filtered.json post /api/deliveroo/restaurants/search
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/deliveroo/restaurants/search:
    post:
      tags:
        - /deliveroo
      summary: /deliveroo/restaurants/search
      description: >-
        Find Deliveroo (deliveroo.co.uk) restaurants and stores delivering to a
        location (latitude/longitude) with optional filters: free-text keyword,
        fulfillment method, sort order, cuisines, dietary options, meal deals,
        top-rated, fast delivery, hygiene rating and Deliveroo's Choice. Returns
        cards with name, rating, review count, distance, delivery time, offers
        and image.


        **Price:** 20 credits


        **💡 AI Hint:** Find Deliveroo (deliveroo.co.uk) restaurants and grocery
        stores delivering to a location. Provide latitude and longitude (of the
        delivery address) and count. Optional: keyword (free-text restaurant or
        dish name), fulfillment_method (delivery/pickup), sort
        (recommended/distance/fastest/rating), cuisines (one or more, they
        stack), dietary (vegan, halal, gluten free, ...), meal_deals, top_rated,
        under_30_min, hygiene_rating, deliveroo_choice. Each result has id,
        name, url, image, rating, rating_label, review_count, distance (miles),
        delivery_time (minutes), is_deliveroo_choice, is_sponsored and offers.
        Use the restaurant url with the restaurants endpoint for the full menu.
      operationId: __api_deliveroo_restaurants_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeliverooSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliverooSearchRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DeliverooSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        latitude:
          type: number
          maximum: 90
          minimum: -90
          description: Delivery location latitude
        longitude:
          type: number
          maximum: 180
          minimum: -180
          description: Delivery location longitude
        count:
          type: integer
          minimum: 1
          description: Max number of restaurants to return
        keyword:
          anyOf:
            - type: string
            - type: 'null'
          description: Free-text search keyword (restaurant or dish name)
        fulfillment_method:
          $ref: '#/components/schemas/DeliverooFulfillment'
          description: Fulfillment method
          default: DELIVERY
        sort:
          $ref: '#/components/schemas/DeliverooSort'
          description: Sort order
          default: recommended
        cuisines:
          items:
            $ref: '#/components/schemas/DeliverooCuisine'
          type: array
          description: Filter by cuisine (multiple cuisines stack)
          default: []
        dietary:
          items:
            $ref: '#/components/schemas/DeliverooDietary'
          type: array
          description: Filter by dietary options
          default: []
        meal_deals:
          type: boolean
          description: Only restaurants with meal deals
          default: false
        top_rated:
          type: boolean
          description: Only restaurants rated 4.5 stars or higher
          default: false
        under_30_min:
          type: boolean
          description: Only restaurants delivering in under 30 minutes
          default: false
        hygiene_rating:
          type: boolean
          description: Only restaurants with a 5 hygiene rating
          default: false
        deliveroo_choice:
          type: boolean
          description: Only Deliveroo's Choice restaurants
          default: false
      type: object
      required:
        - latitude
        - longitude
        - count
    DeliverooSearchRestaurant:
      properties:
        '@type':
          type: string
          default: DeliverooSearchRestaurant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        drn_id:
          anyOf:
            - type: string
            - type: 'null'
        branch_type:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_label:
          anyOf:
            - type: string
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        distance:
          anyOf:
            - type: number
            - type: 'null'
        delivery_time:
          anyOf:
            - type: integer
            - type: 'null'
        is_deliveroo_choice:
          type: boolean
          default: false
        is_sponsored:
          type: boolean
          default: false
        offers:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DeliverooFulfillment:
      type: string
      enum:
        - DELIVERY
        - PICKUP
    DeliverooSort:
      type: string
      enum:
        - recommended
        - distance
        - time
        - rating
    DeliverooCuisine:
      type: string
      enum:
        - acai
        - african
        - american
        - asian
        - bagels
        - bakery
        - bangladeshi
        - bao
        - bbq
        - biryani
        - brazilian
        - breakfast
        - british
        - burgers
        - burritos
        - cakes
        - calzone
        - cantonese
        - caribbean
        - chicken
        - chinese
        - coffee
        - curry
        - donuts
        - dumplings
        - falafel
        - filipino
        - fish
        - focaccia
        - french
        - gelato
        - german
        - greek
        - grill
        - gyros
        - healthy
        - indian
        - indonesian
        - italian
        - japanese
        - juices
        - katsu
        - kebab
        - korean
        - lebanese
        - malaysian
        - mexican
        - mezze
        - milkshakes
        - moroccan
        - nepalese
        - noodles
        - pakistani
        - pancakes
        - pasta
        - pastries
        - persian
        - peruvian
        - pho
        - pizza
        - poke
        - polish
        - portuguese
        - ramen
        - russian
        - salads
        - sandwiches
        - seafood
        - shawarma
        - sichuan
        - soup
        - spanish
        - steak
        - sushi
        - tacos
        - tapas
        - thai
        - turkish
        - udon
        - vietnamese
        - waffles
        - western
        - wings
        - wraps
    DeliverooDietary:
      type: string
      enum:
        - vegetarian
        - vegan
        - vegan friendly
        - halal
        - gluten free
        - organic
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````