Skip to main content
GET
/
api
/
v1
/
report
/
terrain-parks
Get terrain parks
curl --request GET \
  --url https://{subdomain}.mtnmanager.com/api/v1/report/terrain-parks
[
  {
    "uuid": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "status": "open",
    "condition_notes": "<string>",
    "features": [
      {
        "uuid": "<string>",
        "name": "<string>",
        "slug": "<string>",
        "feature_type": "jump",
        "status": "open",
        "number": 123,
        "size": "s",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "number": 123,
    "area_uuid": "<string>",
    "area_name": "<string>",
    "area_display_order": 123,
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Response includes

For each trail:
  • Identification: UUID, name, slug, trail number
  • Difficulty: Beginner, intermediate, advanced, expert, or terrain park
  • Status: Open, closed, or unknown
  • Conditions: Notes about current conditions
  • Area: Which area of the mountain the run belongs to

Response

uuid
string
required

Unique identifier for the terrain park.

name
string
required

Display name of the terrain park.

slug
string
required

URL-friendly identifier for the terrain park.

status
enum<string>
required

Current operational status (open, closed, or unknown).

Available options:
open,
closed,
unknown
condition_notes
string
required

Notes about current conditions in this terrain park.

features
object[]
required

Features within this terrain park (jumps, boxes, rails, etc.).

number
integer<int32> | null

Optional park number for ordering/reference.

area_uuid
string | null

UUID of the area this terrain park belongs to, if assigned.

area_name
string | null

Name of the area this terrain park belongs to, if assigned.

area_display_order
integer<int32> | null

Display order of the area for sorting purposes.

updated_at
string<date-time> | null

When this terrain park's information was last updated.