> ## 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

> Get full Deliveroo (deliveroo.co.uk) restaurant details by {city}/{neighborhood}/{slug} (or menu URL): name, address, rating, review count, currency and the complete menu with categories, items, prices, descriptions, images and modifier groups.

**Price:** 20 credits

**💡 AI Hint:** Fetch a single Deliveroo (deliveroo.co.uk) restaurant by slug '{city}/{neighborhood}/{slug}' (e.g. 'london/soho/bar-bruno') or a full menu URL. Returns id, name, alias, image, description, rating, rating_label, review_count, address (street/neighborhood/city/postcode/country), currency, branch_type, fulfillment_type, menu_id, drn_id, brand_drn_id, category_count, item_count and the full menu as categories, each with items (name, description, price, price_discounted, image, popular, available, is_highly_rated, calories, dietary_tags, allergens, offer_text and modifier_groups with options and option prices).

**⚠️ Common errors:** 412: Restaurant not found (well-formed slug but the menu page does not exist)



## OpenAPI

````yaml /openapi-filtered.json post /api/deliveroo/restaurants
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:
    post:
      tags:
        - /deliveroo
      summary: /deliveroo/restaurants
      description: >-
        Get full Deliveroo (deliveroo.co.uk) restaurant details by
        {city}/{neighborhood}/{slug} (or menu URL): name, address, rating,
        review count, currency and the complete menu with categories, items,
        prices, descriptions, images and modifier groups.


        **Price:** 20 credits


        **💡 AI Hint:** Fetch a single Deliveroo (deliveroo.co.uk) restaurant by
        slug '{city}/{neighborhood}/{slug}' (e.g. 'london/soho/bar-bruno') or a
        full menu URL. Returns id, name, alias, image, description, rating,
        rating_label, review_count, address
        (street/neighborhood/city/postcode/country), currency, branch_type,
        fulfillment_type, menu_id, drn_id, brand_drn_id, category_count,
        item_count and the full menu as categories, each with items (name,
        description, price, price_discounted, image, popular, available,
        is_highly_rated, calories, dietary_tags, allergens, offer_text and
        modifier_groups with options and option prices).


        **⚠️ Common errors:** 412: Restaurant not found (well-formed slug but
        the menu page does not exist)
      operationId: __api_deliveroo_restaurants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeliverooRestaurantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeliverooRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DeliverooRestaurantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        restaurant:
          type: string
          minLength: 1
          description: >-
            Deliveroo restaurant as {city}/{neighborhood}/{slug} or a full menu
            URL
          examples:
            - london/soho/bar-bruno
            - https://deliveroo.co.uk/menu/london/soho/bar-bruno
      type: object
      required:
        - restaurant
    DeliverooRestaurant:
      properties:
        '@type':
          type: string
          default: DeliverooRestaurant
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        description:
          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'
        address:
          anyOf:
            - $ref: '#/components/schemas/DeliverooRestaurantAddress'
            - type: 'null'
        city_id:
          anyOf:
            - type: integer
            - type: 'null'
        zone_id:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        currency_symbol:
          anyOf:
            - type: string
            - type: 'null'
        branch_type:
          anyOf:
            - type: string
            - type: 'null'
        fulfillment_type:
          anyOf:
            - type: string
            - type: 'null'
        menu_id:
          anyOf:
            - type: string
            - type: 'null'
        drn_id:
          anyOf:
            - type: string
            - type: 'null'
        brand_drn_id:
          anyOf:
            - type: string
            - type: 'null'
        category_count:
          type: integer
          default: 0
        item_count:
          type: integer
          default: 0
        categories:
          items:
            $ref: '#/components/schemas/DeliverooMenuCategory'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DeliverooRestaurantAddress:
      properties:
        '@type':
          type: string
          default: DeliverooRestaurantAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        neighborhood:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DeliverooMenuCategory:
      properties:
        '@type':
          type: string
          default: DeliverooMenuCategory
        id:
          type: string
        name:
          type: string
        items:
          items:
            $ref: '#/components/schemas/DeliverooMenuItem'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    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
    DeliverooMenuItem:
      properties:
        '@type':
          type: string
          default: DeliverooMenuItem
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_discounted:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        popular:
          type: boolean
          default: false
        available:
          type: boolean
          default: true
        is_highly_rated:
          type: boolean
          default: false
        calories:
          anyOf:
            - type: string
            - type: 'null'
        dietary_tags:
          items:
            type: string
          type: array
          default: []
        allergens:
          anyOf:
            - type: string
            - type: 'null'
        offer_text:
          anyOf:
            - type: string
            - type: 'null'
        modifier_groups:
          items:
            $ref: '#/components/schemas/DeliverooModifierGroup'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    DeliverooModifierGroup:
      properties:
        '@type':
          type: string
          default: DeliverooModifierGroup
        id:
          type: string
        name:
          type: string
        min_selection:
          type: integer
          default: 0
        max_selection:
          anyOf:
            - type: integer
            - type: 'null'
        multiselect:
          type: boolean
          default: false
        options:
          items:
            $ref: '#/components/schemas/DeliverooModifierOption'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    DeliverooModifierOption:
      properties:
        '@type':
          type: string
          default: DeliverooModifierOption
        id:
          type: string
        name:
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        available:
          type: boolean
          default: true
        popular:
          type: boolean
          default: false
      type: object
      required:
        - id
        - name
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````