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

# /justeat/restaurants/search

> Find Just Eat (just-eat.co.uk) restaurants and stores delivering to (or collectable from) a UK postcode, with optional filters: service type, cuisines/categories, open now, free delivery, deals, new and minimum rating. Returns cards with name, rating, review count, distance, delivery ETA and cost, cuisines, deals and image.

**Price:** 20 credits

**💡 AI Hint:** Find Just Eat (just-eat.co.uk) restaurants and grocery stores serving a UK postcode. Provide postcode and count. Optional: service_type (delivery/collection), cuisines (one or more category slugs, they all must match), open_now, free_delivery, has_deals, new_only, min_rating (0-5), sort (recommended/rating/distance/delivery_cost/fastest). Each result has id, name, alias, menu_url, image, address, rating, review_count, cuisines, distance_meters, eta_minutes, delivery_cost, minimum_delivery_value, is_delivery, is_collection, is_open_now_delivery, next_opening_at, deals and flags. Use a result's alias with the restaurants endpoint to get the full menu.



## OpenAPI

````yaml /openapi-filtered.json post /api/justeat/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/justeat/restaurants/search:
    post:
      tags:
        - /justeat
      summary: /justeat/restaurants/search
      description: >-
        Find Just Eat (just-eat.co.uk) restaurants and stores delivering to (or
        collectable from) a UK postcode, with optional filters: service type,
        cuisines/categories, open now, free delivery, deals, new and minimum
        rating. Returns cards with name, rating, review count, distance,
        delivery ETA and cost, cuisines, deals and image.


        **Price:** 20 credits


        **💡 AI Hint:** Find Just Eat (just-eat.co.uk) restaurants and grocery
        stores serving a UK postcode. Provide postcode and count. Optional:
        service_type (delivery/collection), cuisines (one or more category
        slugs, they all must match), open_now, free_delivery, has_deals,
        new_only, min_rating (0-5), sort
        (recommended/rating/distance/delivery_cost/fastest). Each result has id,
        name, alias, menu_url, image, address, rating, review_count, cuisines,
        distance_meters, eta_minutes, delivery_cost, minimum_delivery_value,
        is_delivery, is_collection, is_open_now_delivery, next_opening_at, deals
        and flags. Use a result's alias with the restaurants endpoint to get the
        full menu.
      operationId: __api_justeat_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/JusteatSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JusteatSearchRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JusteatSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        postcode:
          type: string
          minLength: 1
          description: UK delivery postcode
          examples:
            - EC1A 1BB
            - SW1A1AA
        count:
          type: integer
          minimum: 1
          description: Max number of restaurants to return
        service_type:
          $ref: '#/components/schemas/JusteatServiceType'
          description: Delivery or collection
          default: delivery
        cuisines:
          items:
            $ref: '#/components/schemas/JusteatCuisine'
          type: array
          description: Filter by cuisine/category (a restaurant must match all selected)
          default: []
        open_now:
          type: boolean
          description: Only restaurants open now for the chosen service type
          default: false
        free_delivery:
          type: boolean
          description: Only restaurants with free delivery
          default: false
        has_deals:
          type: boolean
          description: Only restaurants with active deals/offers
          default: false
        new_only:
          type: boolean
          description: Only newly added restaurants
          default: false
        min_rating:
          anyOf:
            - type: number
              maximum: 5
              minimum: 0
            - type: 'null'
          description: Only restaurants with at least this average rating
        sort:
          $ref: '#/components/schemas/JusteatSort'
          description: Result ordering
          default: recommended
      type: object
      required:
        - postcode
        - count
    JusteatSearchRestaurant:
      properties:
        '@type':
          type: string
          default: JusteatSearchRestaurant
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        menu_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/JusteatAddress'
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        distance_meters:
          anyOf:
            - type: number
            - type: 'null'
        eta_minutes:
          anyOf:
            - type: number
            - type: 'null'
        eta_lower:
          anyOf:
            - type: number
            - type: 'null'
        eta_upper:
          anyOf:
            - type: number
            - type: 'null'
        delivery_cost:
          anyOf:
            - type: number
            - type: 'null'
        minimum_delivery_value:
          anyOf:
            - type: number
            - type: 'null'
        is_delivery:
          type: boolean
          default: false
        is_collection:
          type: boolean
          default: false
        is_open_now_delivery:
          type: boolean
          default: false
        is_open_now_collection:
          type: boolean
          default: false
        is_open_now_preorder:
          type: boolean
          default: false
        is_temporarily_offline:
          type: boolean
          default: false
        is_new:
          type: boolean
          default: false
        is_premier:
          type: boolean
          default: false
        next_opening_at:
          anyOf:
            - type: string
            - type: 'null'
        deals:
          items:
            $ref: '#/components/schemas/JusteatDeal'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JusteatServiceType:
      type: string
      enum:
        - delivery
        - collection
    JusteatCuisine:
      type: string
      enum:
        - deals
        - stampcard-restaurants
        - halal
        - burgers
        - chicken
        - breakfast
        - groceries
        - pizza
        - indian
        - italian
        - coffee
        - alcohol
        - lunch
        - asian
        - american
        - freebies
        - kebabs
        - sandwiches
        - japanese
        - chinese
        - desserts
        - sushi
        - curry
        - healthy
        - convenience
        - thai
        - pasta
        - mediterranean
        - turkish
        - greek
        - mexican
        - cafe
        - lebanese
        - grill
        - shops
        - korean
        - bubble-tea
        - noodles
        - caribbean
        - vietnamese
        - fish-and-chips
        - middle-eastern
        - pharmacy
        - burritos
        - african
        - health-and-beauty
        - streetfood
        - wraps
        - bagels
        - bakery
        - british
        - cakes
        - european
        - salads
        - ethiopian
        - bangladeshi
        - brunch
        - poke
        - dinner
        - icecream
        - malaysian
        - smoothies
        - electronics
        - italianpizza
        - jamaican
        - peri-peri
        - pies
        - southamerican
        - biryani
        - doughnuts
        - milkshakes
        - nepalese
        - pakistani
        - seafood
        - drinks
        - fusion
        - hot-dogs
        - oriental
        - pubfood
        - english
        - south-indian
        - tapas
        - waffles
        - afghanistani
        - authentic-pizza
        - bbq
        - brazilian-food
        - cantonese
        - indo-chinese-fusion
        - steak
        - dim-sum
        - glutenfree
        - gourmet
        - jerk
        - pan-asian
        - persian
        - spanish
        - eastern-european
        - fastfood
        - filipino
        - frozenyogurt
        - Moroccan
        - nigerian
        - portuguese
        - venezuelan
        - argentinian
        - crepes
        - english-breakfast
        - flowers
        - french
        - ghanaian
        - indonesian
        - iranian
        - latinamerican
        - pancakes
        - sichuan
        - sri-lankan
        - allnightalcohol
        - beauty
        - business-lunch
        - columbian
        - deli
        - german
        - gifts
        - gourmetburgers
        - iraqi
        - kurdish
        - peruvian
        - polish
        - roast-dinners
        - singapore
        - southafrican
        - specialty
        - syrian
        - taiwanese
        - ukrainian
        - west-african
        - meal_deal
        - local-legends
        - arabic
        - baguettes
        - balti
        - carvery
        - continental
        - cuban
        - egyptian
        - georgian
        - household
        - hungarian
        - paninis
        - parmesans
        - pet-supplies
        - picknmix
        - punjabi
        - romanian
        - rotisserie
        - scottish
        - smoke-house
        - soup
        - southindian
        - subways
        - supermarkets
        - sweets
        - tex-mex
        - 8off
        - favouritespersonalised
        - new
    JusteatSort:
      type: string
      enum:
        - recommended
        - rating
        - distance
        - delivery_cost
        - fastest
    JusteatAddress:
      properties:
        '@type':
          type: string
          default: JusteatAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        postcode:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    JusteatDeal:
      properties:
        '@type':
          type: string
          default: JusteatDeal
        description:
          anyOf:
            - type: string
            - type: 'null'
        offer_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````