phone number standards
phone number standards
Saint Pierre and Miquelon Phone Numbers: +508 Format, Validation & Integration Guide
Complete guide to Saint Pierre and Miquelon phone numbers with +508 country code. Validate 6-digit SPM numbers, integrate with SPM Telecom/Globaltel, and comply with ARCEP regulations.
Saint Pierre and Miquelon Phone Numbers: Format, Area Code & Validation Guide
This technical guide shows you how to integrate your application with Saint Pierre and Miquelon's telecommunications system. You'll learn number formats, validation patterns, emergency service integration, and best practices for working with the +508 country code.
What you'll accomplish:
- Validate 6-digit SPM phone numbers (landline and mobile)
- Implement emergency service routing with proper fallbacks
- Handle both SPM Telecom and Globaltel carrier systems
- Build reliable integrations that account for submarine cable infrastructure
- Comply with ARCEP (French telecommunications authority) regulations
Understanding Saint Pierre and Miquelon's Telecommunications System
Saint Pierre and Miquelon, a French overseas collectivity, relies on a unified numbering system managed by SPM Telecom. Orange S.A. (through its subsidiary Orange Caraïbe) owns 70% of SPM Telecom, established on September 30, 1999, with the local Landry family group owning the remaining 30%. The company held exclusive telecommunications rights until October 2014, when local competitor Globaltel entered the market and ended the monopoly.
SPM Telecom operates the telecommunications infrastructure adhering to French and European Union regulatory standards under ARCEP (Autorité de Régulation des Communications Électroniques, des Postes et de la Distribution de la Presse) oversight. This includes fixed-line, mobile (2G and 4G/LTE), internet, and digital television services. The internet network is based on a submarine cable connection between Halifax (Nova Scotia, Canada) and Lamaline (Newfoundland and Labrador, Canada), with radio frequencies extending to a tower at Cap-à-l'Aigle on Saint Pierre Island.
Current Market Status (2024): SPM Telecom and Globaltel both serve the territory. SPM Telecom operates stores in Saint-Pierre and Miquelon-Langlade.
How to Format and Validate +508 Phone Numbers
Saint Pierre and Miquelon phone numbers follow a 6-digit format with specific prefixes that distinguish landlines from mobile numbers. The territory uses no area codes—all numbers use the unified +508 country code for international dialing.
| Number Type | Format | Prefix | Example |
|---|---|---|---|
| Landline | 4XXXXX | 4 | 431234 |
| Mobile | 55XXXX | 55 | 551234 |
| Toll-Free | 80XXXX | 80 | 801234 |
| Premium | 90XXXX | 90 | 901234 |
| Emergency | — | — | 112, 15, 17, 18 |
Note: As a French overseas collectivity, Saint Pierre and Miquelon uses 112 as the primary emergency number in accordance with European Union standards. The French-specific emergency numbers (15, 17, 18) may also be available but should be considered secondary to 112 for reliability.
For comprehensive phone number validation across other regions, see our guides on E.164 phone number format and phone number lookup services.
Validation:
Validate numbers accurately when your application interacts with the SPM phone system. Here's a JavaScript example that demonstrates a robust validation function:
const SPM_CONFIG = {
countryCode: '508',
numberLength: 6,
carriers: {
SPMTelecom: {
ranges: {
landline: ['41', '42', '43', '45', '46', '47'], // Expanded landline prefixes
mobile: ['55'],
tollFree: ['80'], // Added toll-free range
premium: ['90'] // Added premium range
}
}
}
};
const sanitizePhoneInput = (number) => {
return number.replace(/\D/g, ''); // Remove all non-digit characters
};
const determineNumberType = (number) => {
if (/^4[1-7]\d{4}$/.test(number)) return 'landline';
if (/^55\d{4}$/.test(number)) return 'mobile';
if (/^80[0-5]\d{3}$/.test(number)) return 'tollFree';
if (/^90[0-5]\d{3}$/.test(number)) return 'premium';
return 'unknown';
};
const formatSPMNumber = (number) => {
return number; // SPM numbers need no specific formatting
};
const validateSPMNumber = (number, options = {}) => {
const sanitized = sanitizePhoneInput(number);
if (sanitized.length !== SPM_CONFIG.numberLength) {
return { valid: false, error: `Number must be ${SPM_CONFIG.numberLength} digits` };
}
const numberType = determineNumberType(sanitized);
if (numberType === 'unknown') {
return { valid: false, error: 'Invalid number prefix' };
}
return {
valid: true,
formatted: formatSPMNumber(sanitized),
type: numberType,
international: `+${SPM_CONFIG.countryCode}${sanitized}`
};
};This enhanced validation function includes:
- Sanitization: Removes non-digit characters from input
- Type Detection: Identifies landline, mobile, toll-free, and premium numbers
- Expanded Prefixes: Accommodates a wider range of potential landline prefixes
- Toll-free and Premium Ranges: Validates toll-free and premium number types
- Clearer Error Handling: Provides more informative error messages
International Formatting:
Format international calls with the country code +508 followed by the 6-digit number. Example: +508431234. When implementing E.164 international phone number formatting, always include the plus sign and country code for proper routing.
How to Integrate Emergency Services for SPM Numbers
When you integrate emergency calling features for Saint Pierre and Miquelon numbers:
- Prioritize call routing and implement fallback mechanisms for network congestion
- Support location services for accurate emergency response
- Consider offline emergency calling capabilities
- Ensure compliance with SPM Telecom and ARCEP (French regulatory authority) guidelines for emergency service integration
Best Practices for Developers
- Number Validation: Implement thorough validation using the provided example or a similar robust solution
- Error Handling: Use specific error codes for different validation failures and log errors for monitoring and debugging
- Internationalization: Handle international number formatting correctly
- API Integration: Familiarize yourself with SPM Telecom's API documentation (if available) to access carrier services
- Rate Limiting: Implement rate limiting for API calls to avoid overloading carrier systems
- Security: Store carrier credentials securely and protect against unauthorized access
- Testing: Conduct comprehensive unit, integration, performance, and security testing
- Monitoring: Track validation success rates, cache hit ratios, and carrier integration errors
- Maintenance: Update validation patterns regularly based on carrier changes and maintain communication with SPM Telecom for updates and API changes
SPM Telecom Network Infrastructure and Coverage
SPM Telecom maintains network infrastructure supporting 2G and 4G/LTE mobile services (no 5G deployment as of 2024). The network relies on a submarine cable connection from Halifax (Nova Scotia, Canada) through Lamaline (Newfoundland and Labrador, Canada), extending via radio frequencies to Cap-à-l'Aigle tower on Saint Pierre Island. Since October 2014, Globaltel has operated as a second mobile network provider in the territory.
Coverage is generally excellent in urban areas (Saint-Pierre and Miquelon-Langlade) but may be limited in remote locations. Account for potential connectivity limitations and network resilience considerations when you design applications.
Reliability Note: In November 2024, a major internet outage affected SPM Télécom subscribers due to submarine cable maintenance and sectioned aerial cables, highlighting the territory's dependence on submarine cable infrastructure.
Refer to SPM Telecom's official coverage maps (https://www.spmtelecom.com/) and Globaltel (http://www.globaltel-spm.com/) for detailed coverage information.
Service Provider Information and Regulations
SPM Telecom and Globaltel operate under the regulatory oversight of ARCEP (Autorité de Régulation des Communications Électroniques, des Postes et de la Distribution de la Presse), France's regulatory authority for electronic communications, postal affairs, and press distribution. ARCEP regulates telecommunications across all French territories, including overseas departments and collectivities.
Licensed Operators (as of 2024):
- SPM Telecom: Established 1999, majority-owned by Orange S.A. through Orange Caraïbe (70%), operates 2G and 4G/LTE networks
- Globaltel: Market entrant since October 2014, ending SPM Telecom's monopoly
ARCEP enforces quality of service standards encompassing network availability, call completion rates, voice quality, and data performance metrics. The authority also manages frequency allocations for mobile networks in overseas territories. Ensure your applications comply with ARCEP's performance benchmarks and quality standards.
For regulatory information, visit ARCEP's official website: https://www.arcep.fr/ or https://en.arcep.fr/ (English).
Troubleshooting Common Phone Number Validation Issues
- Invalid Number Patterns: Double-check number formats against the latest SPM Telecom documentation and account for any recent carrier pattern changes. Consider using professional phone lookup services to verify number validity in real-time
- Performance Issues: Optimize validation regex patterns, implement caching for frequently accessed data, and consider batch processing for bulk operations
- Integration Failures: Verify carrier API credentials, check network connectivity, and validate request formatting against the API documentation
Additional Resources
Telecommunications Providers:
- SPM Telecom: https://www.spmtelecom.com/ – Primary telecommunications operator (70% Orange S.A. owned)
- Globaltel: http://www.globaltel-spm.com/ – Second mobile operator (since October 2014)
Regulatory Authority:
- ARCEP (French Regulatory Authority): https://www.arcep.fr/ – French telecommunications regulator with jurisdiction over Saint Pierre and Miquelon
- ARCEP English: https://en.arcep.fr/ – ARCEP website in English
General Information:
- SPM Ferries: https://www.spm-ferries.fr/ – Transportation and general territory information
Follow these guidelines and best practices to ensure seamless integration with the Saint Pierre and Miquelon telephone system, providing a reliable and user-friendly experience for your applications.