sms compliance

Sent logo
Sent TeamMar 8, 2026 / sms compliance / Article

Wallis and Futuna Phone Numbers (+681): Format & Validation Guide

Complete guide to Wallis and Futuna phone numbers with country code +681. Learn how to validate WF numbers, implement E.164 formatting, handle SMS/MMS, and comply with GDPR requirements.

Wallis and Futuna Phone Numbers: Format, Area Code & Validation Guide

Learn how to handle Wallis and Futuna phone numbers correctly in your applications. This comprehensive guide covers the territory's country code +681, number format specifications, phone number validation techniques using E.164 standards, implementation best practices, and regulatory requirements. Whether you're implementing international calling features, SMS services, or user input validation, this guide provides everything you need for Wallis and Futuna telecommunications integration.

Understanding the Telecommunications Context

Before diving into phone number specifics, understand the unique telecommunications environment of Wallis and Futuna. This French territory in the South Pacific, with a population of approximately 11,000, faces distinct challenges due to its geographical isolation and dispersed population – primarily concentrated on Wallis Island. The Tui-Samoa undersea cable connects the islands to Fiji and Samoa with a capacity of 8 Tbps using 100 Gbps wavelengths.

Infrastructure Details:

  • Primary Connectivity: Tui-Samoa cable (single fiber pair, owned by Samoa Submarine Cable Company)
  • Backup Systems: Satellite links maintained for redundancy
  • Cable Capacity: 8 Tbps (80 x 100 Gbps channels)
  • Typical Latency: ~50-100ms to regional hubs (Fiji/Samoa), 200-300ms to major internet exchanges

Consider this reliance on a single undersea cable when designing applications, as any disruption could significantly impact communication. The Service des Postes et Télécommunications (SPT), the territory's single operator, maintains backup satellite connectivity to ensure service continuity during cable outages.

The SPT manages all telecommunications infrastructure, number allocation, and regulation. This centralized management simplifies certain processes but introduces specific considerations for developers.

SPT Contact Information:

  • Website: www.spt.wf
  • Main Office: BP 00, Mata-Utu, 98600 UVEA, Wallis
  • Phone: +681 72 08 02 (Head of Service)
  • Mobile: +681 82 19 67
  • Email: manuele.taofifenua@spt.wf
  • Customer Service: 14 (toll-free from local numbers)
  • Technical Support (Wallis): +681 72 20 14
  • Futuna Office: +681 72 36 00

The SPT actively modernizes its infrastructure with support from the Agence Française de Développement (AFD). This modernization includes expanding 2G/3G coverage and developing a fiber optic network to enhance connectivity across the islands.

Wallis and Futuna Emergency Numbers and Critical Infrastructure

Wallis and Futuna maintains a robust emergency communication system that adheres to French territorial standards. The SPT employs redundant systems to ensure 24/7 availability, even under challenging conditions.

Emergency Numbers and Response Times

The following table lists the emergency numbers and their typical response times:

Service TypeNumberResponse Time
Police (Gendarmerie)17< 5 minutes
Fire/Ambulance18< 8 minutes
European Emergency112< 5 minutes

Critical: All emergency numbers work from both fixed-line and mobile phones, even when locked or without credit. Ensure emergency numbers (17, 18, 112) are never blocked or filtered in your applications.

Telecommunications Infrastructure and Modernization

Strategic initiatives funded by the AFD have modernized the territory's telecommunications infrastructure. The independent mobile phone network "Manuia" improves local telecommunications and expands mobile service access. Monitor these developments, as they may influence future numbering plans and service availability.

The modernization focuses on three key areas:

  1. Network Technology: Expanding 2G/3G coverage (95% in urban areas, 80% in rural regions), developing a phased fiber optic network, and maintaining redundant satellite connectivity for a more reliable communication infrastructure.

  2. Digital Communications: Support for SMS formats (standard, concatenated, and Unicode) and MMS capabilities (up to 300 KB, supporting common image and short video formats).

SMS Character Encoding:

  • GSM-7 Encoding: Standard SMS supports 160 characters using GSM-7 character set (basic Latin alphabet, numbers, common symbols)
  • Unicode (UCS-2) Encoding: Messages with special characters, emojis, or non-Latin scripts automatically switch to Unicode, reducing capacity to 70 characters per message
  • Concatenated Messages: Longer messages are automatically split into segments (153 characters for GSM-7, 67 for Unicode per segment)
  • Typical Delivery Time: 5-30 seconds for local delivery, up to 2 minutes for international SMS
  • Retry Policy: Most carriers retry failed deliveries for 24-48 hours before marking as undeliverable

When implementing SMS functionality, always validate message length and encoding to optimize costs and ensure reliable delivery.

  1. Regulatory Oversight: The Agence Nationale des Fréquences (ANFR) oversees radio frequency allocation and management, ensuring compliance with national and international standards.

Developer Requirements:

  • Standard telephony integration requires no formal registration
  • Contact SPT directly to offer telecommunications services
  • Arrange bulk SMS or commercial messaging services with SPT in advance (contact customer service at 14)

Wallis and Futuna Phone Number Format and Structure

Understanding the structure of Wallis and Futuna phone numbers is essential for accurate number validation and processing in your applications.

Country Code +681 and Number Format

Wallis and Futuna uses a straightforward numbering plan consisting of:

  • Country Code: +681
  • Subscriber Number: X{6} (6 digits)

This simple format facilitates integration with international telephone systems. However, thorough validation is still crucial to ensure data integrity. Always validate user-provided phone numbers to prevent errors and ensure compatibility with your systems.

Number Types, Formats, and Examples

The territory uses distinct number ranges for different services:

TypeFormatExampleNotes
Landline72X{4}721234Fixed-line numbers start with 72.
Mobile8[23]X{4}821234Mobile numbers start with 82 or 83.
Toll-Free80[0-5]X{3}805123Toll-free numbers start with 80. Free for callers.
Premium RateNot ApplicableNot ApplicableNo premium rate services are currently available.

Cost Implications:

  • Landline Calls: Standard rates apply; typically lower cost than mobile
  • Mobile Calls: Higher per-minute rates than landline; rates vary by time of day
  • Toll-Free Calls: Free for callers; recipient pays all charges
  • International Calls: Significant cost; verify current rates with SPT before implementation

The SPT manages all number allocation centrally. For dedicated numbers or number ranges, contact SPT's commercial telecommunications department at +681 72 08 21 or via email at the addresses provided above.

Use prefix-based categorization to identify number types and route calls or apply specific business logic in your applications. For more on international number formatting standards, see our E.164 Phone Number Format guide.

How to Validate Wallis and Futuna Phone Numbers

Here are some JavaScript regular expressions for validating Wallis and Futuna phone numbers:

javascript
// General number validation (including country code)
const generalPattern = /^\+681\d{6}$/;

// Landline validation (local format)
const landlinePattern = /^72\d{4}$/;

// Mobile validation (local format)
const mobilePattern = /^8[23]\d{4}$/;

// Toll-free validation (local format)
const tollFreePattern = /^80[0-5]\d{3}$/;

// International prefix variants (00681 or +681)
const intlPrefixPattern = /^(?:\+|00)681\d{6}$/;

Use these regular expressions to validate user input and ensure correct phone number format. Integrate validation checks into your input fields to prevent storing invalid data.

Edge Cases to Handle:

  • Users may enter 00681 instead of +681 (international dialing prefix)
  • Spaces, dashes, or parentheses in user input (e.g., +681 72 12 34)
  • Leading zeros or country code omissions in local contexts

For production applications, consider using the libphonenumber library, which handles international phone number parsing, formatting, and validation with comprehensive territory coverage. Learn more about phone number validation best practices for global implementations.

How to Validate and Format WF Phone Numbers in JavaScript

Follow these guidelines when handling Wallis and Futuna phone numbers. These best practices ensure data consistency and system reliability.

Number Storage, Validation, and Display

  1. Storage Format: Always store phone numbers in the international E.164 format (+681XXXXXXX). This standardized format ensures consistency and simplifies integration with international telephone systems. Read our comprehensive guide on international phone number formatting for best practices.

  2. Validation Example:

javascript
function isValidWFNumber(number) {
  // Remove all non-digit characters except leading +
  const cleaned = number.replace(/[^\d+]/g, '');

  // Handle international prefix variants
  const normalized = cleaned.replace(/^00/, '+');

  // Validate format
  const isValid = /^\+681(72|8[023])\d{4}$/.test(normalized);

  if (!isValid) {
    throw new Error('Invalid Wallis and Futuna phone number format. Expected: +681XXXXXX');
  }

  return normalized;
}

// Usage with error handling
try {
  const validNumber = isValidWFNumber('+681 72 12 34');
  console.log('Valid:', validNumber); // Output: +681721234
} catch (error) {
  console.error('Validation error:', error.message);
}

This function validates numbers with formatting characters and includes proper error handling with user-friendly messages. Always validate numbers before storing them in your database.

  1. Display Formatting:
javascript
function formatWFNumber(number) {
  // Remove all non-digit characters
  const cleaned = number.replace(/\D/g, '');
  // Format as XX XX XX
  return cleaned.replace(/(\d{2})(\d{2})(\d{2})/, '$1 $2 $3');
}

// International format with country code
function formatWFNumberInternational(number) {
  // Extract digits only
  const cleaned = number.replace(/\D/g, '');

  // Remove country code if present
  const localNumber = cleaned.replace(/^681/, '');

  // Format as +681 XX XX XX
  if (localNumber.length === 6) {
    return '+681 ' + localNumber.replace(/(\d{2})(\d{2})(\d{2})/, '$1 $2 $3');
  }

  return number; // Return original if format unexpected
}

// Usage
console.log(formatWFNumberInternational('+681721234')); // Output: +681 72 12 34

These functions format numbers for display and improve readability. Adapt them to match your specific display requirements and locale preferences.

Additional Considerations for Wallis and Futuna

Due to the unique telecommunications environment, consider these additional factors:

  • No Number Portability: Number portability is not available. Numbers remain permanently tied to the operator. Treat operator-number relationships as fixed. No published roadmap exists for implementing number portability due to the single-operator environment.

  • Limited Number Ranges: Due to the small population, number ranges are limited. Strict validation is essential to prevent invalid number assignments.

  • Centralized Management: All number allocations are handled by the SPT. This simplifies the process of obtaining new numbers but also means that there is a single point of contact for all number-related inquiries.

Monitoring Changes: Check the SPT website regularly for numbering plan updates, network maintenance, or service changes. For critical applications, subscribe to SPT's customer service notifications by calling the toll-free number 14.

Important: Implement proper error handling for non-conforming numbers, as the territory's numbering plan may evolve.

GDPR and Data Protection Requirements for WF Telecommunications

Telecommunications services in Wallis and Futuna adhere to a comprehensive data protection framework aligned with French and European Union regulations, ensuring user data privacy and security.

French Data Protection Laws and GDPR Implementation

The framework incorporates:

  1. French Data Protection Laws: CNIL guidelines and territorial adaptations provide a robust foundation for data protection. Regular compliance audits ensure service providers adhere to these regulations.

  2. GDPR Implementation: The General Data Protection Regulation (GDPR) enforces principles of data minimization, consent management, and strict cross-border data transfer protocols to ensure responsible and secure user data handling.

Data Retention Requirements for Telecommunications:

  • Customer Account Data: Maximum retention of 3 years after end of commercial relationship (per CNIL recommendations)
  • Call Detail Records (CDRs): Typically retained for 1 year for billing purposes, up to 2 years for legal/regulatory requirements
  • Marketing Consent Records: Must be refreshed every 3 years; data may be kept for up to 3 years after last contact
  • Billing Information: Generally retained for 5 years to comply with French accounting law
  • Technical Logs: Retention varies by purpose; typically 6-12 months for troubleshooting

SMS Marketing Consent Requirements:

  • Explicit Opt-In Required: Must obtain explicit, affirmative consent before sending marketing SMS (GDPR Article 6)
  • Clear Purpose Statement: Users must be informed exactly what they're consenting to
  • Easy Opt-Out: Every marketing SMS must include clear opt-out instructions (e.g., "Reply STOP to unsubscribe")
  • Consent Documentation: Maintain records of when, where, and how consent was obtained
  • Opt-Out Processing: Must honor opt-out requests immediately (within 24 hours maximum)
  • Double Opt-In Recommended: Best practice to confirm consent via confirmation SMS

For businesses planning SMS marketing campaigns, consult with a Data Protection Officer (DPO) or legal counsel to ensure full GDPR compliance. CNIL registration may be required for certain data processing activities involving telecommunications data.

Ensure your applications comply with all applicable data protection requirements to maintain user trust and avoid legal issues.

Network Performance and Quality Metrics

The SPT monitors network performance and maintains high service quality. These metrics provide insights into telecommunications infrastructure reliability and availability.

Coverage Statistics and Quality Metrics

Key metrics include:

  • Network Availability: 99.9% uptime
  • Call Success Rate: 98.5% (measured across all number types)
  • Data Service Reliability: 99.2% for SMS/MMS delivery

Automated systems and manual verification protocols monitor these metrics 24/7, ensuring prompt issue identification and resolution.

Service Level Agreements (SLAs):

  • The SPT does not publicly publish detailed SLAs for consumer services
  • Business customers can negotiate specific SLA terms by contacting the commercial department
  • Standard service restoration targets: 24-48 hours for non-critical issues, 4-8 hours for critical outages
  • For current SLA information, contact SPT customer service at 14 or via email

Request historical network performance data from SPT for business planning purposes.

Frequently Asked Questions About Wallis and Futuna Phone Numbers

What is the country code for Wallis and Futuna?

The country code for Wallis and Futuna is +681. When dialing internationally, prefix the 6-digit local number with +681. For example, to call the local number 721234, dial +681721234.

How do I validate a Wallis and Futuna phone number in my application?

Validate Wallis and Futuna phone numbers using the E.164 format: +681 followed by 6 digits. Use regular expressions to check that landlines start with 72, mobile numbers start with 82 or 83, and toll-free numbers start with 80. Always store numbers in international E.164 format (+681XXXXXXX) to ensure consistency across systems.

What is the difference between Wallis and Futuna landline and mobile numbers?

Landline numbers in Wallis and Futuna start with the prefix 72 (format: 72XXXX), while mobile numbers start with 82 or 83 (format: 8[23]XXXX). Both are 6 digits long and use the country code +681. This prefix-based distinction allows you to easily identify the number type and route calls appropriately in your applications.

Does Wallis and Futuna support number portability?

No, Wallis and Futuna currently does not support number portability. Phone numbers remain permanently tied to the Service des Postes et Télécommunications (SPT), the territory's single telecommunications operator. Treat operator-number relationships as fixed when designing your applications.

How many digits are in a Wallis and Futuna phone number?

Wallis and Futuna phone numbers consist of 6 digits for the local subscriber number, plus the 3-digit country code (+681), totaling 9 digits in international E.164 format. The straightforward 6-digit local format simplifies number validation and integration with international telephone systems.

What emergency numbers work in Wallis and Futuna?

Wallis and Futuna uses three emergency numbers: 17 for Police (Gendarmerie), 18 for Fire/Ambulance, and 112 for European Emergency services. All emergency numbers are accessible from both fixed-line and mobile phones, even when locked or without credit, with response times under 5-8 minutes depending on the service.

Can I send SMS and MMS to Wallis and Futuna phone numbers?

Yes, Wallis and Futuna supports SMS messaging (standard, concatenated, and Unicode formats) and MMS capabilities up to 300 KB, including common image and short video formats. The territory's modernized telecommunications infrastructure, managed by the SPT, provides 95% 2G/3G coverage in urban areas and 80% in rural regions.

What format should I use to store Wallis and Futuna phone numbers in my database?

Always store Wallis and Futuna phone numbers in the international E.164 format: +681XXXXXXX (country code +681 followed by the 6-digit subscriber number). This standardized format ensures consistency, simplifies integration with international systems, and prevents validation errors when processing phone numbers across different platforms.

What timezone does Wallis and Futuna use?

Wallis and Futuna operates in the UTC+12 timezone year-round (no daylight saving time). When scheduling SMS campaigns or automated calls, account for this timezone offset to ensure messages are delivered during appropriate hours (typically 8:00-20:00 local time for marketing messages).

Does Wallis and Futuna support international roaming?

Yes, mobile numbers from Wallis and Futuna can roam on international networks. The SPT's "Manuia" network has roaming agreements with carriers in neighboring Pacific nations and major international operators. For current roaming rates and coverage, contact SPT customer service at 14.

Are VoIP and virtual numbers supported in Wallis and Futuna?

VoIP services are technically supported through standard internet connections, but virtual number services (numbers not physically terminated in Wallis and Futuna) are not currently offered by SPT. Businesses requiring VoIP integration should contact SPT's telecommunications division directly at +681 72 20 14 to discuss technical requirements and availability.

Troubleshooting Common Issues

Number Validation Failures

Problem: Phone numbers fail validation despite appearing correct.

Solutions:

  • Ensure the number starts with valid prefixes: 72 (landline), 82/83 (mobile), or 80 (toll-free)
  • Remove all formatting characters (spaces, dashes, parentheses) before validation
  • Check for international prefix variations (00681 vs +681)
  • Verify the number has exactly 6 digits after the country code

SMS Delivery Failures

Problem: SMS messages are not delivered to Wallis and Futuna numbers.

Solutions:

  • Verify the number is in E.164 format: +681XXXXXX
  • Check that your SMS provider supports the Pacific region
  • Ensure message content doesn't trigger spam filters (avoid excessive URLs, all-caps text)
  • For Unicode messages, verify character count is under 70 per segment
  • Allow up to 2 minutes for delivery; retry after this period if needed
  • Contact SPT technical support at +681 72 20 14 if persistent issues occur

Call Connection Issues

Problem: Unable to establish calls to/from Wallis and Futuna.

Solutions:

  • Verify correct international dialing format: +681 followed by 6 digits
  • Check that your telecom provider has routing agreements for +681
  • Consider network congestion during peak hours (8:00-10:00, 17:00-19:00 local time)
  • If using VoIP, ensure adequate bandwidth (minimum 100 kbps per concurrent call)
  • For persistent issues, contact SPT customer service at 14 (local) or +681 72 08 02 (international)

Data/API Integration Problems

Problem: Telephone number APIs reject Wallis and Futuna numbers.

Solutions:

  • Use libphonenumber library for comprehensive number parsing
  • Explicitly specify region code 'WF' in validation functions
  • Some older APIs may not recognize +681; update to current API versions
  • Test with multiple example numbers across all types (landline, mobile, toll-free)
  • Verify your API provider includes Wallis and Futuna in their supported territories list

Phone Number Standards and Formats

Pacific Island Telecommunications

French Territory Phone Systems

SMS and Messaging Implementation

Regulatory Compliance

Conclusion and Next Steps

This guide has provided you with a comprehensive overview of Wallis and Futuna's telephone numbering system, including technical details, best practices, and regulatory considerations. By understanding these aspects, you can develop robust and reliable applications that seamlessly integrate with the territory's telecommunications infrastructure.

Recommended Next Steps:

  1. Implement Validation: Add the provided regex patterns and validation functions to your application
  2. Test Thoroughly: Use the example numbers throughout this guide to test your implementation
  3. Contact SPT: For production deployments requiring bulk messaging or specialized services, reach out to SPT's commercial department at +681 72 08 21
  4. Monitor for Updates: Bookmark the SPT website and check periodically for numbering plan changes
  5. Review Compliance: Ensure your data handling practices align with GDPR and CNIL requirements outlined above
  6. Plan for Redundancy: Given the single-cable dependency, implement graceful degradation for connectivity issues

For technical questions or support with Wallis and Futuna phone number integration, contact the SPT technical division at +681 72 20 14 or email stephane.pambrun@spt.wf.

Stay informed about any updates or changes to the numbering plan or regulations to ensure ongoing compatibility.