Secure websites use HTTPS
Scam alert
Sign up here for higher rate limits, priority support and maintenance notifications.
These data are for MOH testing sites that are opened to public for specific testing purposes.
Attribute Legend
| Attributes | Data Type | Description |
|---|---|---|
| OBJECTID | Numeric | - |
| NAME | Text | - |
| DESCRIPTION | Text | - |
| BLOCK_NO | Text | - |
| STREET_NAME | Text | - |
| BUILDING_NAME | Numeric | - |
| POSTAL_CODE | Numeric | - |
| FLOOR_NO | Numeric | - |
| UNIT_NO | Numeric | - |
| HYPERLINK | Numeric | - |
| X | Numeric | - |
| Y | Numeric | - |
| OPERATING_HOURS | Text | - |
| INC_CRC | Text | - |
| FMEL_UPD_D | Numeric | - |
Dataset preview
This code can be used to view the raw JSON dataset for MOH JTVC. Large datasets may be truncated in the preview. Please download the dataset for complete data.
{
"type": "FeatureCollection",
"name": "TESTINGOPS",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.78587842365266,
1.437317497655435
]
},
"properties": {
"OBJECTID": 1921,
"NAME": "JTVC Woodlands",
"DESCRIPTION": "Joint Testing and Vaccination Centre",
"BLOCK_NO": "3A",
"STREET_NAME": "Woodlands Square",
"BUILDING_NAME": null,
"POSTAL_CODE": "737735",
"FLOOR_NO": null,
"UNIT_NO": null,
"HYPERLINK": null,
"X": null,
"Y": null,
"OPERATING_HOURS": "Testing services are currently not offered at JTVCs.",
"INC_CRC": "98C394B25D303D58",
"FMEL_UPD_D": "20231227093525"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.82523124188216,
1.2889741081158854
]
},
"properties": {
"OBJECTID": 1922,
"NAME": "JTVC Bukit Merah",
"DESCRIPTION": "Joint Testing and Vaccination Centre",
"BLOCK_NO": "8",
"STREET_NAME": "Lower Delta Road",
"BUILDING_NAME": null,
"POSTAL_CODE": "169198",
"FLOOR_NO": null,
"UNIT_NO": null,
"HYPERLINK": null,
"X": null,
"Y": null,
"OPERATING_HOURS": "Testing services are currently not offered at JTVCs.",
"INC_CRC": "9CB7A07C786E9274",
"FMEL_UPD_D": "20231227093525"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.91070209804805,
1.334678550554368
]
},
"properties": {
"OBJECTID": 1923,
"NAME": "JTVC Kaki Bukit",
"DESCRIPTION": "Joint Testing and Vaccination Centre",
"BLOCK_NO": "20",
"STREET_NAME": "Jalan Damai",
"BUILDING_NAME": null,
"POSTAL_CODE": "419612",
"FLOOR_NO": null,
"UNIT_NO": null,
"HYPERLINK": null,
"X": null,
"Y": null,
"OPERATING_HOURS": "Testing services are currently not offered at JTVCs.",
"INC_CRC": "D595F2A33598B125",
"FMEL_UPD_D": "20231227093525"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.73989458816345,
1.3401560459283357
]
},
"properties": {
"OBJECTID": 1924,
"NAME": "JTVC Jurong East",
"DESCRIPTION": "Joint Testing and Vaccination Centre",
"BLOCK_NO": "450",
"STREET_NAME": "Jurong East Street 21",
"BUILDING_NAME": null,
"POSTAL_CODE": "609604",
"FLOOR_NO": null,
"UNIT_NO": null,
"HYPERLINK": null,
"X": null,
"Y": null,
"OPERATING_HOURS": "Testing services are currently not offered at JTVCs.",
"INC_CRC": "9C793E1E22BB7C00",
"FMEL_UPD_D": "20231227093525"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
103.89544887363371,
1.3906786866967045
]
},
"properties": {
"OBJECTID": 1925,
"NAME": "JTVC Sengkang",
"DESCRIPTION": "Joint Testing and Vaccination Centre",
"BLOCK_NO": "19A",
"STREET_NAME": "Sengkang Square",
"BUILDING_NAME": null,
"POSTAL_CODE": "546911",
"FLOOR_NO": null,
"UNIT_NO": null,
"HYPERLINK": null,
"X": null,
"Y": null,
"OPERATING_HOURS": "Testing services are currently not offered at JTVCs.",
"INC_CRC": "686B1DE8F3818B84",
"FMEL_UPD_D": "20231227093525"
}
}
]
}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_3a72361ccec412c344d90a662b767cf3"
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.
03 Nov 2025
Free forever for personal or commercial use, under the Open Data Licence.