> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mtnmanager.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Terrain Parks



## OpenAPI

````yaml GET /api/v1/report/terrain-parks
openapi: 3.1.0
info:
  title: MtnManager API
  description: >-
    The MtnManager API provides real-time access to your ski resort’s public
    operational data. Use it to display current conditions on your website,
    mobile app, or digital signage.
  termsOfService: https://mtnmanager.com/terms
  contact:
    name: MtnManager Support
    url: https://docs.mtnmanager.com/developer/
    email: support@mtnmanager.com
  license:
    name: MIT
    identifier: MIT
  version: 1.0.0
servers:
  - url: https://{subdomain}.mtnmanager.com
    variables:
      subdomain:
        default: your-resort
        description: Your resort's unique subdomain
security: []
paths:
  /api/v1/report/terrain-parks:
    get:
      tags:
        - MtnManager
      summary: Get terrain parks
      operationId: getTerrainParks
      parameters:
        - in: header
          name: Accept-Language
          description: >-
            Preferred language and optional region for human-readable strings in
            the response (e.g. operating hours summaries). Supports `en`, `fr`,
            `de`, `it`, and `es`, with optional region tags such as `fr-CA` or
            `de-CH`. Defaults to English when omitted or unsupported.
          schema:
            type: string
          example: fr-CA
          style: simple
      responses:
        '200':
          description: |-
            List of all terrain parks at the resort with their current status,
             condition notes, and list of features (jumps, boxes, rails, etc.) within them.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TerrainParksResponse'
              example:
                - uuid: 550e8400-e29b-41d4-a716-446655440000
                  name: Main Park
                  slug: main-park
                  number: 1
                  status: open
                  condition_notes: Freshly shaped features, park crew out daily
                  area_uuid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                  area_name: Lower Mountain
                  area_display_order: 1
                  features:
                    - uuid: 550e8400-e29b-41d4-a716-446655440000
                      name: Flat Rail
                      slug: flat-rail
                      number: 1
                      feature_type: rail
                      size: m
                      status: unknown
                      images: []
                  updated_at: '2026-01-26T16:26:33+00:00'
                  images: []
        '403':
          description: Endpoint not available for this resort. Feature may be disabled.
        '404':
          description: Resort not found.
        '429':
          description: Too many requests, temporarily rate limited.
        '500':
          description: An unexpected server error occurred.
        '503':
          description: Service temporarily unavailable.
      x-codeSamples:
        - lang: typescript
          label: TypeScript
          source: "import { MtnManagerApi, Configuration } from \"@mtnmanager/sdk\";\n\nconst api = new MtnManagerApi(\n\tnew Configuration({\n\t\tbasePath: \"https://your-resort.mtnmanager.com\",\n\t})\n);\n\ntry {\n    const data = await api.getTerrainParks();\n    console.log(data);\n} catch (error) {\n    console.error(error);\n}"
        - lang: go
          label: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\tmtnmanager \"github.com/mtnmanager/mtnmanager-sdk-go\"\n)\n\nfunc main() {\n\tconfiguration := mtnmanager.NewConfiguration()\n\tconfiguration.Servers = mtnmanager.ServerConfigurations{\n\t\t{URL: \"https://your-resort.mtnmanager.com\"},\n\t}\n\tclient := mtnmanager.NewAPIClient(configuration)\n\n\tdata, _, err := client.MtnManagerAPI.GetTerrainParks(context.Background()).Execute()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tfmt.Printf(\"%+v\\n\", data)\n}"
        - lang: php
          label: PHP
          source: |-
            <?php
            require_once(__DIR__ . '/vendor/autoload.php');

            $config = MtnManager\Configuration::getDefaultConfiguration()
                ->setHost('https://your-resort.mtnmanager.com');

            $apiInstance = new MtnManager\Api\MtnManagerApi(
                new GuzzleHttp\Client(),
                $config
            );

            try {
                $result = $apiInstance->getTerrainParks();
                print_r($result);
            } catch (Exception $e) {
                echo 'Exception: ', $e->getMessage(), PHP_EOL;
            }
        - lang: swift
          label: Swift
          source: |-
            import MtnManagerSDK

            let config = MtnManagerSDKAPIConfiguration(
                basePath: "https://your-resort.mtnmanager.com"
            )

            do {
                let data = try await MtnManagerAPI.getTerrainParks(apiConfiguration: config)
                print(data)
            } catch {
                print("Error: \(error)")
            }
components:
  schemas:
    TerrainParksResponse:
      description: |-
        List of all terrain parks at the resort with their current status,
         condition notes, and list of features (jumps, boxes, rails, etc.) within them.
      type: array
      items:
        $ref: '#/components/schemas/TerrainPark'
      examples:
        - - uuid: 550e8400-e29b-41d4-a716-446655440000
            name: Main Park
            slug: main-park
            number: 1
            status: open
            condition_notes: Freshly shaped features, park crew out daily
            area_uuid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
            area_name: Lower Mountain
            area_display_order: 1
            features:
              - uuid: 550e8400-e29b-41d4-a716-446655440000
                name: Flat Rail
                slug: flat-rail
                number: 1
                feature_type: rail
                size: m
                status: unknown
                images: []
            updated_at: '2026-01-26T16:26:33+00:00'
            images: []
    TerrainPark:
      description: |-
        Represents a terrain park at the resort with its current status,
         condition notes, and list of features (jumps, boxes, rails, etc.) within it.
      type: object
      properties:
        uuid:
          description: Unique identifier for the terrain park.
          type: string
        name:
          description: Display name of the terrain park.
          type: string
        slug:
          description: URL-friendly name of the terrain park.
          type: string
        number:
          description: Optional terrain park number.
          type:
            - integer
            - 'null'
          format: int32
        status:
          description: Current operational status (open, closed, or unknown).
          allOf:
            - $ref: '#/components/schemas/TerrainParkStatus'
        condition_notes:
          description: Notes about current conditions in this terrain park.
          type: string
        area_uuid:
          description: UUID of the area this terrain park belongs to, if assigned.
          type:
            - string
            - 'null'
        area_name:
          description: Name of the area this terrain park belongs to, if assigned.
          type:
            - string
            - 'null'
        area_display_order:
          description: >-
            Display order of the area this terrain park belongs to, if assigned,
            for sorting purposes.
          type:
            - integer
            - 'null'
          format: int32
        features:
          description: Features within this terrain park (jumps, boxes, rails, etc.).
          type: array
          items:
            $ref: '#/components/schemas/TerrainParkFeature'
        updated_at:
          description: When this terrain park or any of its features was last updated.
          type: string
          format: date-time
        images:
          description: >-
            Images attached to this terrain park, ordered for display. Each
            includes
             a ThumbHash for rendering a blurred placeholder while the image loads.
          type: array
          items:
            $ref: '#/components/schemas/EntityImage'
          default: []
      required:
        - uuid
        - name
        - slug
        - status
        - condition_notes
        - features
        - updated_at
      examples:
        - uuid: 550e8400-e29b-41d4-a716-446655440000
          name: Main Park
          slug: main-park
          number: 1
          status: open
          condition_notes: Freshly shaped features, park crew out daily
          area_uuid: a1b2c3d4-e5f6-7890-abcd-ef1234567890
          area_name: Lower Mountain
          area_display_order: 1
          features:
            - uuid: 550e8400-e29b-41d4-a716-446655440000
              name: Flat Rail
              slug: flat-rail
              number: 1
              feature_type: rail
              size: m
              status: unknown
              images: []
          updated_at: '2026-01-26T16:26:33+00:00'
          images: []
    TerrainParkStatus:
      description: Operational status of a terrain park.
      type: string
      enum:
        - open
        - closed
        - unknown
    TerrainParkFeature:
      description: >-
        Represents a single feature within a terrain park (jump, box, rail,
        etc.)
         with its current status and size rating.
      type: object
      properties:
        uuid:
          description: Unique identifier for the feature.
          type: string
        name:
          description: Display name of the feature.
          type: string
        slug:
          description: URL-friendly name of the run.
          type: string
        number:
          description: Optional feature number.
          type:
            - integer
            - 'null'
          format: int32
        feature_type:
          description: Type of feature (jump, box, rail, other).
          allOf:
            - $ref: '#/components/schemas/FeatureType'
        size:
          description: Optional size rating of the feature (S, M, L, XL).
          anyOf:
            - $ref: '#/components/schemas/FeatureSize'
            - type: 'null'
        status:
          description: |-
            Current operational status (open, closed, or unknown).
             `unknown` unless the terrain park feature status is enabled.
          allOf:
            - $ref: '#/components/schemas/TerrainParkFeatureStatus'
        images:
          description: >-
            Images attached to this feature, ordered for display. Each includes
            a
             ThumbHash for rendering a blurred placeholder while the image loads.
          type: array
          items:
            $ref: '#/components/schemas/EntityImage'
          default: []
      required:
        - uuid
        - name
        - slug
        - feature_type
        - status
      examples:
        - uuid: 550e8400-e29b-41d4-a716-446655440000
          name: Flat Rail
          slug: flat-rail
          number: 1
          feature_type: rail
          size: m
          status: unknown
          images: []
    EntityImage:
      description: >-
        A single image attached to a resort entity, with a client-supplied
        ThumbHash
         for rendering a blurred placeholder while the full image loads.
      type: object
      properties:
        url:
          description: Full public URL to the image.
          type: string
        thumb_hash:
          description: Base64-encoded ThumbHash for placeholder rendering.
          type: string
      required:
        - url
        - thumb_hash
    FeatureType:
      description: Type of terrain park feature.
      type: string
      enum:
        - jump
        - box
        - rail
        - other
    FeatureSize:
      description: Size rating of terrain park feature.
      type: string
      enum:
        - s
        - m
        - l
        - xl
    TerrainParkFeatureStatus:
      description: Operational status of a terrain park feature.
      type: string
      enum:
        - open
        - closed
        - unknown

````