Restaurant Details

Get detailed information about a specific restaurant including operating hours, location, and full address. Requires providerId and sellerId from the nearby restaurants response.

Get Restaurant Details

GET /ret11/api/restaurants/{providerId}/seller/{sellerId}
Auth Required

Include a Bearer token. See Authentication.

Path Parameters

ParameterTypeRequiredDescription
providerIdstringrequiredProvider ID from nearby-restaurants. Example: pramaan_provider_1
sellerIdstringrequiredSeller UUID from nearby-restaurants
GET /ret11/api/restaurants/pramaan_provider_1/seller/019b9e8e-baeb-7158-8090-14afa4db5c46

Response

Returns an array containing the restaurant detail object.

FieldTypeDescription
providerIdstringProvider identifier
namestringRestaurant name
shortDescstringShort description
longDescstringFull description
imagesstring[]Image URLs
ratingnumber | nullAverage rating (null if no ratings yet)
sellerIdstringSeller UUID
daysstring[]Operating days. Values: "1" (Mon) through "7" (Sun). Example: ["1","2","3","4","5","6","7"] = open all week
openingTimestringOpening time in HHMM format. Example: "1000" = 10:00 AM
closingTimestringClosing time in HHMM format. Example: "2100" = 9:00 PM
localitystringLocality/neighborhood
streetstringStreet address
citystringCity name
areaCodestringPIN code
latnumberLatitude coordinate
lngnumberLongitude coordinate
[
  {
    "providerId": "pramaan_provider_1",
    "name": "Pramaan Store 1",
    "shortDesc": "Pramaan Store 1",
    "longDesc": "Pramaan Store 1",
    "images": ["https://example.com/store1.webp"],
    "rating": null,
    "sellerId": "019b78d7-1371-7017-a997-3f6429a2f663",
    "days": ["1","2","3","4","5","6","7"],
    "openingTime": "1000",
    "closingTime": "2100",
    "locality": "N. Caldwell",
    "street": "633 Stagtrail Rd",
    "city": "New Delhi",
    "areaCode": "110030",
    "lat": 28.5273,
    "lng": 77.1821
  }
]

Notes

Days Format

The days field uses numeric strings where "1" = Monday and "7" = Sunday. This follows the ONDC specification for day-of-week encoding.

Time fields (openingTime, closingTime) are 24-hour format without colon: "1000" = 10:00, "2100" = 21:00.