Secure websites use HTTPS
Scam alert
Sign up here for higher rate limits, priority support and maintenance notifications.
Data from Dec 2016
Last updated: 13 Nov 2025, 11:25 SGT
Mobile Speed Camera (MSC) consists of SPF wholly owned traffic mobile enforcement cameras deployed to deter and detect vehicles from committing the traffic offence of speeding.
Attribute Legend
| Attributes | Data Type | Description |
|---|---|---|
| OBJECTID | Numeric | - |
| ID | Numeric | - |
| ROAD_NAME | Text | - |
| DIRECTION | Text | - |
| LATITUDE | Geo Coordinate (Latitude) | - |
| LONGITUDE | Geo Coordinate (Longitude) | - |
| DESCP | Text | - |
| INC_CRC | Text | - |
| FMEL_UPD_D | Numeric | - |
Dataset preview
This code can be used to view the raw JSON dataset for Singapore Police Force Mobile Speed Cameras. Large datasets may be truncated in the preview. Please download the dataset for complete data.
{
"type": "FeatureCollection",
"name": "SPF_MSC",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.88491599999607,
1.4074290000002558
]
},
"properties": {
"OBJECTID": 1,
"ID": 1,
"ROAD_NAME": "Seletar Link",
"DIRECTION": "Seletar North Link",
"LATITUDE": 1.407429,
"LONGITUDE": 103.884916,
"DESCP": "near lamp post 37",
"INC_CRC": "6DE04D1DB9E0CA84",
"FMEL_UPD_D": "20161230200915"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.69852300000012,
1.3914429999978184
]
},
"properties": {
"OBJECTID": 2,
"ID": 2,
"ROAD_NAME": "Lim Chu Kang Road",
"DIRECTION": "Neo Tiew Road",
"LATITUDE": 1.391443,
"LONGITUDE": 103.698523,
"DESCP": "near lamp post 95",
"INC_CRC": "87B0B128F7832D49",
"FMEL_UPD_D": "20161230200915"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.99332000000325,
1.3414500000011045
]
},
"properties": {
"OBJECTID": 3,
"ID": 3,
"ROAD_NAME": "Changi Coast Road",
"DIRECTION": "East Coast Parkway",
"LATITUDE": 1.34145,
"LONGITUDE": 103.99332,
"DESCP": "near lamp post 164F",
"INC_CRC": "3EA605CD0E34D8C7",
"FMEL_UPD_D": "20161230200915"
}
}
]
}This code can be used to test a sample API query. It retrieves the data catalogue of this dataset. For a complete guide on query parameters and syntax, please refer to the API documentation
import requests
dataset_id = "d_e411f01a5ac504f88434d7a02388c9ce"
url = "https://api-open.data.gov.sg/v1/public/api/datasets/" + dataset_id + "/poll-download"
response = requests.get(url)
json_data = response.json()
if json_data['code'] != 0:
print(json_data['errMsg'])
exit(1)
url = json_data['data']['url']
response = requests.get(url)
print(response.text)This dataset can be reused and cited in research publications.
31 Jul 2023
Free forever for personal or commercial use, under the Open Data Licence.