Skip to main content
Get campsites by campground id
curl --request GET \
  --url https://api.campflare.com/v2/campground/:id/campsites
[
  {
    "id": "<string>",
    "campground_id": "<string>",
    "name": "<string>",
    "kind": "standard",
    "loop_name": "<string>",
    "latitude": 123,
    "longitude": 123,
    "reservation_url": "<string>",
    "equipment": [
      {
        "kind": "rv",
        "name": "<string>"
      }
    ],
    "kind_listed": "<string>",
    "schedule": {
      "check_in_time": "<string>",
      "check_out_time": "<string>",
      "uniform": true
    },
    "price": {
      "per_night": 123,
      "currency_code": "<string>",
      "currency": "<string>"
    },
    "firepit": true,
    "picnic_table": true,
    "ada_accessible": true,
    "water_hookups": true,
    "electric_hookups": true,
    "sewer_hookups": true,
    "max_people": 123,
    "max_cars": 123,
    "pull_through": true,
    "driveway_length": 123,
    "max_rv_length": 123,
    "max_trailer_length": 123,
    "photos": [
      {
        "original_url": "<string>",
        "attribution_needed": true,
        "large_url": "<string>",
        "medium_url": "<string>",
        "small_url": "<string>",
        "attribution": "<string>",
        "name": "<string>"
      }
    ]
  }
]
Details for the campsite field descriptions can be found in the data documentation here.
GET /campground/:id/campsites

Path Parameters

id
string
required

Unique identifier of the campground

Response

Campsites response

id
string
required

Unique identifier for the campsite

campground_id
string
required

The campground the campsite belongs to

name
string
required

Name of the campsite

kind
enum<string>
required

Type of campsite

Available options:
standard,
rv,
tent-only,
cabin,
management,
group,
walk-to,
equestrian,
water-access
loop_name
string

Name of the loop where the campsite is located

latitude
number<float>

Latitude coordinate of the campsite

longitude
number<float>

Longitude coordinate of the campsite

reservation_url
string<uri>

URL for making reservations

equipment
object[]

List of equipment types allowed at the campsite. This can be used to determine, for example, if an RV site also allows tents. If this field is null, then the equipment restrictions are unknown and it is best to refer to the kind field.

kind_listed
string

The unmodified kind/type of the campsite listed on the reservation platform.

schedule
object

Check-in/out times for the campsite

price
object
firepit
boolean

Whether the campsite has a firepit

picnic_table
boolean

Information about picnic table availability

ada_accessible
boolean

Whether the campsite is ADA accessible

water_hookups
boolean

Whether the campsite has water hookups

electric_hookups
boolean

Whether the campsite has electric hookups

sewer_hookups
boolean

Whether the campsite has sewer hookups

max_people
integer

Maximum number of people allowed at the campsite

max_cars
integer

Maximum number of cars allowed at the campsite

pull_through
boolean

Whether the campsite is a pull-through site

driveway_length
integer

Length of the driveway in feet

max_rv_length
integer

Maximum RV length in feet

max_trailer_length
number<float>

Maximum trailer length in feet

photos
object[]

Photos of the campsite