Skip to main content

The API is currently in beta testing and is not ready for public consumption yet.

Get in touch

Parking Spaces (Live)

Returns live information about currently available parking spaces in certain multi-storey carparks.

This data is provided by the Government. See a working example: https://www.gov.je/Travel/Motoring/Parking/pages/carparkspaces.aspx

GET /v1/carparks/live-spaces

Query Params

ParamDesription
includeCarparkInfoIf set to true then full Carpark info will be included with the response (see Carparks schema)
info

The response we provide is slightly different than what the Government endpoint provides. This is done to ensure consistent formatting across our whole API.

Response

This is a sample response.

Status: 200 (OK)
{
"results": [
{
"name": "Green Street",
"code": "GREENST",
"spaces": 332,
"status": "good",
"open": true
},
{
"name": "Minden Place",
"code": "MINDENPL",
"spaces": 47,
"status": "good",
"open": true
}
],
"timestamp": "2023-08-29T02:57:26.000Z"
}

Differences from Government endpoint

Here is a sample response from the Multi-Storey carpark spaces page on gov.je:

http://sojpublicdata.blob.core.windows.net/sojpublicdata/carpark-data.json
{
"carparkData":{
"Jersey":{
"carpark":[
{
"name":"Green Street",
"code":"GREENST",
"spaces":332,
"type":"Long stay",
"status":"good",
"carparkOpen":true,
"carparkInformation":"",
"numberOfUnusableSpaces":0,
"numberOfSpacesConsideredLow":43
}
]
},
"Timestamp":"This information was updated at 03:32:48 on Tuesday 29 August"
}
}

You can compare this response with the response from our API above.

Sources

Source
Parking Spaces API