🇸🇬Singapore Districts
All 5 Singapore subdivisions with ISO 3166-2:SG codes - Asia / South-eastern Asia
Total
5 subdivisions
Types
District
ISO Standard
ISO 3166-2:SG
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Singapore subdivisions
const subs = subdivision.getByCountry('SG');
// => 5 subdivisions
// Look up a specific subdivision
subdivision.get('SG-01');
// => { code: 'SG-01', name: 'Central Singapore', type: 'District' }
// Validate a subdivision code
subdivision.isValidCode('SG-01'); // true
subdivision.isValidRegion('SG', '01'); // trueTree-Shaking Tip
Import only Singapore subdivisions to minimize bundle size:
// Import only Singapore subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/SG';
Object.entries(subdivisions);
// => 5 entriesAll Singapore Districts
| Code | Name | Type |
|---|---|---|
| SG-01 | Central Singapore | District |
| SG-02 | North East | District |
| SG-03 | North West | District |
| SG-04 | South East | District |
| SG-05 | South West | District |
FAQ
- How many subdivisions does Singapore have?
- Singapore has 5 subdivisions defined in ISO 3166-2:SG, including 5 districts.
- What is the ISO 3166-2 code format for Singapore?
- Singapore subdivision codes follow the format SG-XX, where SG is the country's alpha-2 code and XX is the subdivision identifier. For example, SG-01 represents Central Singapore.
- How to get Singapore subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('SG')to get all 5 subdivisions.
Use Singapore subdivision data in your project
Get all 5 Singapore subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries