Fullers
  1. Restaurants
Fullers
  • Customer
    • Auth
      • Login
      • Register
      • Resend OTP
      • Validate OTP
      • Validate OTP Forgot Password
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Upload Avatar Only
      • Change Password
      • Delete Account
    • Payment Methods
      • All
      • Store
      • Confirm Setup Intent
      • Delete
    • Addresses
      • All
      • Store
      • Update
      • Delete
    • Deals
      • Get All Active Deals
      • Get Deal Details
      • Get Featured Deals
      • Get Expiring Soon Deals
      • Check Deal Availability
      • GET Get Deal Purchase Details
    • Coupons
      • Available Coupons
      • Validate Coupon
      • Get Coupon by Code
      • Get My Used Coupons
      • Get Recommended Coupons
    • Restaurants
      • Get Nearby Restaurants
        GET
      • Get Restaurant Details
        GET
      • Get Restaurant Categories
        GET
      • Get Category with Products
        GET
      • Get Complete Restaurant Menu
        GET
      • Get Products with Restaurant Filter
        GET
      • Get Product Details
        GET
      • Search Products in Restaurant
        GET
      • Get Restaurant Deals
        GET
      • Restaurant Search
        POST
    • Orders
      • Orders List
      • Create Order
      • Validate Order
      • Get Order Details
      • Cancel Order
      • Confirm Payment
      • Track Order
      • Reorder Previous Order
    • Wishlist
      • Get Wishlist
      • Add to Wishlist
      • Toggle Wishlist Item
      • Remove from Wishlist
      • Remove from Wishlist (by Item)
      • Check Wishlist Status
      • Clear Wishlist
    • Ratings
      • Submit Rating
      • Get Ratings LIst
      • Get Single Rating
      • Get Restaurant Ratings
      • Order Can Be Rated
    • Ads Banners
      • Get Active Banners
      • Get Single Banner
      • Ads Banner Rotation
    • Categories
      • Ads Banner Rotation
    • Payments
      • Create Payment
      • Ads Banner Rotation Copy
      • Ads Banner Rotation Copy
    • Pages
      • Pages Listing
      • Pages by Slug
      • Page by ID
  • Restaurant User
    • Auth
      • Get Restaurants List
      • Register Restaurant User
      • Login
      • Resend OTP
      • Validate OTP
      • Logout
      • Delete Account
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Change Password
      • Upload Avatar
    • Orders
      • Get Orders
      • Get Today's Orders
      • Get Order Statistics
      • Get Order Details
      • Get Order History
      • Ratings
      • Confirm/Accept Order
      • Reject Order
      • Update Order Status
      • Active Orders
    • Stock Manaement
      • List Stock
      • Get stock statistics
      • Get product details
      • Update availability
      • Bulk Update availability
      • List Categories
    • Settings
      • Get Restaurant Setting
      • Update Restaurant Settings
  • Driver
    • Auth
      • Driver Registration
      • Login
      • Resend OTP
      • Validate OTP
      • Logout
      • Delete Account
      • Forget Password
      • Reset Password
    • Profile
      • Get Profile
      • Update Profile
      • Update Driver Documents
      • Status Change
      • Change Password
      • Change Password Copy
    • Driver Status Management
      • Update Driver Status (Online/Offline)
      • Available Deliveries
      • Accept Delivery
      • Get Current Active Delivery
      • Delivery Status
  1. Restaurants

Get Restaurant Details

GET
/api/v1/customer/restaurants/1

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Responses

🟢200Get Nearby Restaurants
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fullers.flamesware.com/api/api/v1/customer/restaurants/1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "success": true,
    "message": "Restaurants near you",
    "data": [
        {
            "id": 1,
            "restaurant_id": 2,
            "name": "Downtown Branch",
            "full_address": "123 Main Street, Downtown, New York, NY 10001",
            "lat": "40.7831",
            "lng": "-73.9712",
            "phone": "+1234567891",
            "distance": 3.417882161037178,
            "restaurant": {
                "id": 2,
                "restaurant_name": "Pizza Palace",
                "restaurant_logo": "http://127.0.0.1:8000/uploaded_data/pizza-palace-logo.jpg",
                "restaurant_cover_image": "http://127.0.0.1:8000/uploaded_data/pizza-palace-cover.jpg"
            }
        },
        {
            "id": 3,
            "restaurant_id": 3,
            "name": "Central Branch",
            "full_address": "789 Central Park West, Manhattan, NY 10024",
            "lat": "40.7829",
            "lng": "-73.9654",
            "phone": "+1234567894",
            "distance": 3.5020359784236113,
            "restaurant": {
                "id": 3,
                "restaurant_name": "Burger House",
                "restaurant_logo": "http://127.0.0.1:8000/uploaded_data/burger-house-logo.jpg",
                "restaurant_cover_image": "http://127.0.0.1:8000/uploaded_data/burger-house-cover.jpg"
            }
        },
        {
            "id": 2,
            "restaurant_id": 2,
            "name": "Uptown Branch",
            "full_address": "456 Broadway, Uptown, New York, NY 10025",
            "lat": "40.7989",
            "lng": "-73.9691",
            "phone": "+1234567892",
            "distance": 5.1822856456124695,
            "restaurant": {
                "id": 2,
                "restaurant_name": "Pizza Palace",
                "restaurant_logo": "http://127.0.0.1:8000/uploaded_data/pizza-palace-logo.jpg",
                "restaurant_cover_image": "http://127.0.0.1:8000/uploaded_data/pizza-palace-cover.jpg"
            }
        }
    ]
}
Modified at 2025-09-17 10:07:25
Previous
Get Nearby Restaurants
Next
Get Restaurant Categories
Built with