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

# /zomato/restaurants

> Get full Zomato restaurant details by '{city}/{slug}' path or restaurant URL: name, cuisines, dining and delivery ratings, cost for two, address, geo coordinates, phones, opening hours, amenities, dining offers and photos.

**Price:** 5 credits

**💡 AI Hint:** Fetch a single Zomato restaurant by '{city}/{slug}' path (e.g. 'bangalore/ishaara-residency-road-bangalore') or a full restaurant URL. Returns id, name, cuisines, rating (aggregate), vote_count, rating_dining/rating_delivery (+counts), cost_for_two, address, locality, city, latitude/longitude, phones, timing, opening_hours, status, highlights (amenities), offers, top_dishes, popular_for, known_for, static_map_url, photo_menus and images.

**⚠️ Common errors:** 412: Restaurant not found (well-formed path but the restaurant does not exist)



## OpenAPI

````yaml /openapi-filtered.json post /api/zomato/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/zomato/restaurants:
    post:
      tags:
        - /zomato
      summary: /zomato/restaurants
      description: >-
        Get full Zomato restaurant details by '{city}/{slug}' path or restaurant
        URL: name, cuisines, dining and delivery ratings, cost for two, address,
        geo coordinates, phones, opening hours, amenities, dining offers and
        photos.


        **Price:** 5 credits


        **💡 AI Hint:** Fetch a single Zomato restaurant by '{city}/{slug}' path
        (e.g. 'bangalore/ishaara-residency-road-bangalore') or a full restaurant
        URL. Returns id, name, cuisines, rating (aggregate), vote_count,
        rating_dining/rating_delivery (+counts), cost_for_two, address,
        locality, city, latitude/longitude, phones, timing, opening_hours,
        status, highlights (amenities), offers, top_dishes, popular_for,
        known_for, static_map_url, photo_menus and images.


        **⚠️ Common errors:** 412: Restaurant not found (well-formed path but
        the restaurant does not exist)
      operationId: __api_zomato_restaurants_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZomatoRestaurantsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZomatoRestaurant'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZomatoRestaurantsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          description: Max scrapping execution timeout (in seconds)
          default: 300
        restaurant:
          type: string
          minLength: 1
          description: Restaurant as a '{city}/{slug}' path or a full restaurant URL
          examples:
            - bangalore/ishaara-residency-road-bangalore
            - >-
              https://www.zomato.com/bangalore/ishaara-residency-road-bangalore/info
      type: object
      required:
        - restaurant
    ZomatoRestaurant:
      properties:
        '@type':
          type: string
          default: ZomatoRestaurant
        id:
          type: integer
        url:
          type: string
        name:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        cuisines:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        vote_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_dining:
          anyOf:
            - type: number
            - type: 'null'
        rating_dining_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_delivery:
          anyOf:
            - type: number
            - type: 'null'
        rating_delivery_count:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        photo_menus:
          items:
            $ref: '#/components/schemas/ZomatoPhotoMenu'
          type: array
          default: []
        top_dishes:
          items:
            type: string
          type: array
          default: []
        popular_for:
          items:
            type: string
          type: array
          default: []
        known_for:
          anyOf:
            - type: string
            - type: 'null'
        static_map_url:
          anyOf:
            - type: string
            - type: 'null'
        cost_for_two:
          anyOf:
            - type: number
            - type: 'null'
        cost_for_two_text:
          anyOf:
            - type: string
            - type: 'null'
        accepted_payments:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          type: string
          default: INR
        address:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_id:
          anyOf:
            - type: integer
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_id:
          anyOf:
            - type: integer
            - type: 'null'
        zipcode:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
        timing:
          anyOf:
            - type: string
            - type: 'null'
        opening_hours:
          items:
            $ref: '#/components/schemas/ZomatoOpeningHours'
          type: array
          default: []
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_delivery_only:
          type: boolean
          default: false
        is_permanently_closed:
          type: boolean
          default: false
        is_temporarily_closed:
          type: boolean
          default: false
        highlights:
          items:
            type: string
          type: array
          default: []
        offers:
          items:
            $ref: '#/components/schemas/ZomatoDiningOffer'
          type: array
          default: []
        chain_url:
          anyOf:
            - type: string
            - type: 'null'
        bookmark_count:
          anyOf:
            - type: integer
            - type: 'null'
        share_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZomatoPhotoMenu:
      properties:
        '@type':
          type: string
          default: ZomatoPhotoMenu
        label:
          type: string
        pages_text:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - label
    ZomatoOpeningHours:
      properties:
        '@type':
          type: string
          default: ZomatoOpeningHours
        days:
          type: string
        timing:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - days
    ZomatoDiningOffer:
      properties:
        '@type':
          type: string
          default: ZomatoDiningOffer
        subtitle:
          anyOf:
            - type: string
            - type: 'null'
        offer_value:
          anyOf:
            - type: number
            - 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

````