Parking Lots

This is the main endpoint for parking lots. It allows you to retrieve a list of all parking lots and the related data for each parking lot.

The ParkingLot model

Properties

  • Name
    id
    Type
    int
    Description

    The unique identifier of the parking lot.

  • Name
    name
    Type
    string
    Description

    The name of the parking lot.

  • Name
    number_of_spaces
    Type
    int
    Description

    Number of spaces. Defaults to 0 = infinite.

  • Name
    zone_number
    Type
    int
    Description

    The zone number.

  • Name
    max_time
    Type
    int
    Description

    The maximum allowed time for a ticket, in seconds. Defaults to 0 = infinite.

  • Name
    parking_lot_fee
    Type
    ParkingLotFee[]
    Description

    Array of fees for the parking lot. See ParkingLotFee resource.

  • Name
    variable_fees
    Type
    VariableFee[]
    Description

    Array of variable fees for the parking lot. See VariableFee resource.

  • Name
    parking_lot_open
    Type
    ParkingLotOpen[]
    Description

    Array of opening hours for the parking lot. See ParkingLotOpen resource.

  • Name
    parking_lot_location
    Type
    ParkingLotLocation[]
    Description

    Array of locations of the parking lot. See ParkingLotLocation resource.

  • Name
    active
    Type
    boolean
    Description

    Weather the parking lot is active or not.

  • Name
    max_fee
    Type
    int
    Description

    The maximum fee for a ticket created on this parking lot. Defaults to 0 = infinite.

JSON Resource

{
  "id": 6761,
  "name": "Casper-Kutch",
  "number_of_spaces": 664,
  "zone_number": 3142,
  "max_time": 10,
  "parking_lot_fee": [
    {
      "id": 37592,
      "cost_per_unit": 6206,
      "unit": 4,
      "start_time": "22:41:46",
      "end_time": "23:40:08",
      "type_of_day": 1,
      "round": true
    }
  ],
  "variable_fees": [],
  "parking_lot_open": [],
  "parking_lot_location": [],
  "active": true,
  "max_fee": 3116
}
GET /api/v1/parkings

List all parking lots

This endpoint allows you to retrieve a list of all parking lots and the related data for each parking lot.

Request example

curl --request GET \ 
--url https://api.{tenant}.parkeraisverige.com/api/v1/parkings \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'

Response

{
  "data": {
    "id": 61146,
    "name": "Bauch PLC",
    "number_of_spaces": 115,
    "zone_number": 4906,
    "max_time": 6,
    "parking_lot_fee": [
      {
        "id": 6721,
        "cost_per_unit": 2009,
        "unit": 2,
        "start_time": "15:21:06",
        "end_time": "07:13:29",
        "type_of_day": 1,
        "round": true
      }
    ],
    "variable_fees": [],
    "parking_lot_open": [],
    "parking_lot_location": [],
    "active": true,
    "max_fee": 3367
  }
}

© Copyright 2025 Parkera i Sverige.