Charter Boats API
Boats

Get Boat

Get detailed information about a specific boat

GET/boats/:id

Retrieve complete details for a single boat, including owner info, images, amenities, reviews, and calculated ratings.

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe boat's unique identifier (UUID)

Request

curl https://charter.boats/api/boats/550e8400-e29b-41d4-a716-446655440000

Response

{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "title": "BALI Catspace - Luxury Catamaran",
  "description": "Beautiful 40ft catamaran with 4 cabins...",
  "boat_type": "catamaran",
  "capacity": 8,
  "length_ft": 40,
  "year": 2023,
  "location_city": "Lefkada",
  "location_state": "Greece",
  "location_address": "Lefkada Marina",
  "latitude": 38.8336,
  "longitude": 20.7066,
  "price_per_hour": null,
  "price_per_day": 850,
  "minimum_hours": 4,
  "instant_book": false,
  "cancellation_policy": "moderate",
  "is_active": true,
  "is_published": true,
  "created_at": "2026-01-27T10:30:00Z",
  "owner": {
    "id": "owner-uuid",
    "name": "Captain John",
    "avatar_url": "https://...",
    "created_at": "2026-01-15T00:00:00Z"
  },
  "images": [
    {
      "id": "img-1",
      "boat_id": "550e8400-...",
      "url": "https://...",
      "is_primary": true,
      "sort_order": 0
    }
  ],
  "amenities": [
    {
      "id": "1",
      "name": "WiFi",
      "icon": "wifi",
      "category": "entertainment"
    }
  ],
  "reviews": [
    {
      "id": "review-1",
      "rating": 5,
      "comment": "Amazing experience!",
      "created_at": "2026-01-20T00:00:00Z"
    }
  ],
  "average_rating": 4.8,
  "review_count": 12
}

Response Fields

FieldTypeDescription
idstringUnique boat identifier
titlestringBoat name
descriptionstringFull description
boat_typestringType of boat
capacityintegerMaximum guests
length_ftnumberLength in feet
yearintegerYear built
location_citystringCity
location_statestringState/country
location_addressstringFull address or marina
latitudenumberGPS latitude
longitudenumberGPS longitude
price_per_hournumberHourly rate in USD
price_per_daynumberDaily rate in USD
minimum_hoursintegerMinimum booking hours
instant_bookbooleanWhether instant booking is enabled
cancellation_policystringflexible, moderate, or strict
ownerobjectOwner information
imagesarrayArray of boat images
amenitiesarrayArray of amenity objects
reviewsarrayArray of review objects
average_ratingnumberCalculated average rating (1-5)
review_countintegerTotal number of reviews

Errors

StatusMessage
400Boat ID is required
404Boat not found

On this page