A custom Home Assistant integration for monitoring your Tellink prepaid balance, SIM status, username, and validity date directly from your dashboard.
- Balance sensor (€) with low-balance alert icon (below €2)
- Username, SIM status, and Expiry date sensors
- Multiple accounts support
- Secure credentials stored in private HA storage (auto-migrated from older entries)
- Repairs issue with a Fix button for reauthentication
- Configurable update and retry intervals
- Low credit alert automation example
- Web-based configuration UI
Or manually:
- Go to HACS > Integrations > Custom Repositories
- Add repository (category Integration):
https://github.com/renaudallard/homeassistant_tellinkroaming - Click Download and restart Home Assistant
- Add the integration via Settings > Devices & Services > Add Integration > Tellink Prepaid
- Download the latest release from the releases page
- Extract into
<config>/custom_components/tellink/ - Restart Home Assistant
- Add the integration from the UI
When adding the integration:
- Enter your Tellink username (usually your phone number)
- Enter your password
- Click Submit
You can configure update and retry intervals under: Settings > Devices & Services > Tellink > Configure
| Option | Default |
|---|---|
| Update interval | 3600 s |
| Retry interval | 3600 s |
If credentials become invalid, a Tellink needs reauthentication issue appears in Settings > Repairs. Click Fix, enter the new password, and the integration will validate, store, and reload automatically.
| Sensor | Description | Device Class | Example |
|---|---|---|---|
sensor.tellink_balance |
Current credit amount (€) | Monetary | 6.75 |
sensor.tellink_status |
SIM status | None | Active |
sensor.tellink_username |
Tellink username | None | 9189007815 |
sensor.tellink_expiry |
Validity expiry date | Date | 2037-12-31 |
alias: Tellink low credit alert
trigger:
- platform: numeric_state
entity_id: sensor.tellink_balance
below: 2
action:
- service: notify.mobile_app_yourdevice
data:
message: "Your Tellink balance is below 2 EUR!"
mode: single- Compatible with Home Assistant 2025.10+
- Domain:
tellink - Uses DataUpdateCoordinator; sensors do not call the API directly
- Expiry returns a proper
date(HA 2025+ requirement) - Brand images (icon and logo) included for HA 2026.3+ UI display
