Registered Services
43 servicesA list of known APRS services so operators can find them quickly. Click a card to see details.
All-in-one APRS bot with weather, satellite passes, radiosonde tracking, location services, and POI search
Announcement group server - join groups and send announcements to members with similar interests
APRS to Telegram Gateway Service
APRSMY Net Bot - Malaysia APRS Automated Net Check-in Service
APRSPH is a network of licensed amateur radio operators who share messages and position packets through radio and internet.
One-stop shop for self-spotting activations (POTA, SOTA, WWFF, etc) via APRS
9M2PJU APRS Bulletin Board Service - Send HELP to BBSMY
Malaysia Callsign Database APRS Bot - Send text message CALLSIGN <CALL> to CALLMY
Global server to facilitate initial contact between hams with similar interests
APRS Echo & Signal Bot - Test your APRS signal path
Gateway to forward APRS messages to Internet email
APRS station lookup service. Send a callsign to retrieve last heard time, IGate station, speed, distance, and grid square.
9M2PJU APRS Riddle Game Bot. Send HELP to start.
Create APRS persistent groups, exchange messages with the groups members. Send HELP to GRP. Commands Lists: LIST: Show list of groups qty of members, JOIN: Join a Group, LEAVE: to leave a group, To message a group just send <GROUP> <MESSAGE> to GRP
APRS IRC like service with support for creating/joining channels. Send '/help' to callsign IRC
Calculate current or next ISS pass for your beaconed position
Get Jokes over APRS!!
err-aprs-backend powered bot
APRS messaging bot. Send and receive messages between APRS users, join groups, and get automatic message delivery while on the air.
9M2PJU APRS2EMAIL Bot. Send EMAIL <ADDR> <MSG> to MAILMY then SEND to end (Limit: 5/hr)
Event for Malaysia National Day, every year in August. Send APRS message: CQ MERDEKA to MERDEKA26 . Once your check-in is successful, you will be awarded a certificate of participation. Please visit 9w2key.blogspot.com (under maintenance) to download your certificate.
Provides APRS services such as global wx forecasts, repeater queries, email position reporting, etc.
Message CQ MASUK to MYANET and get your OTP for an e-Cert claim. All participants registered with MYANET are eligible to receive a digital certificate of participation. Please visit http://tinyurl.com/MYANET2 to claim your certificate.
Gateway to send radiograms to the National Traffic System (NTS) via APRS
The vibe of a POTA activation, played over native APRS messaging. Host an op, work chasers, and see every contact logged, scored, and mapped. Send OTA a message with CQ to find an op, or HOST to start one.
Missed message mailbox. Holds msgs you miss while offline.
Missed message mailbox. Holds msgs you miss while offline.
APRS quiz service to help master APRS usage - ask for a question and respond with your answer
Find nearest repeaters to your last beacon! send 'help nearest' to callsign 'REPEAT'
Winlink & APRS SMS Gateway
APRS Net & Digital QSL Bot - CQ TICANET, APRSDAY, MATUTINA
APRSD server owned by W0CTS
APRS_2_X Gateway Services: Post MSG, WX, SAT, BANDCX, DMR LastHeard, CW Translator to @X
WB4BOR's development APRSD server https://www.aprsradio.online
Callsign lookup service - get information about a ham radio callsign
Gateway for amateur radio operators to send messages to WhatsApp contacts via APRS
WxBot is an APRS-IS listener app that listens for messages and responds with a brief US National Weather Service forecast
APRS Service to report local weather
Send a message to WXYO for a weather forecast at your location.
How to Register or Update Your Service
Use the REST API to register or update your service. Full API documentation is available.
Send an HTTP POST to:
https://services.aprslive.com/api/v1/registry
With JSON in the request body:
{
"callsign": "Your service callsign here.",
"description": "The description of your service here.",
"service_website": "The URL of your service here.",
"software": "The service software and version here",
"callsign_owner": "Your name or callsign (optional)"
}
{
"callsign": "REPEAT",
"description": "Find the nearest N repeaters to your current location",
"service_website": "http://aprs-repeat.hemna.com",
"software": "APRSD version 3.3.0",
"callsign_owner": "W1AW"
}
curl -X POST -H "Content-Type: application/json" \
-d '{"callsign": "REPEAT", "description": "Find the nearest N repeaters to your current location", "service_website": "http://aprs-repeat.hemna.com", "software": "APRSD version 3.3.0", "callsign_owner": "W1AW"}' \
https://services.aprslive.com/api/v1/registry
If you use the APRSD Python daemon (v3.3.0+), enable the registry in your aprsd.conf:
[aprs_registry]
# Enable the automatic registry feature
enable = true
# The description of your service
description = My service does X, Y, and Z.
# The URL of your service
service_website = http://myaprsservice.com
# Every 900 seconds (15 minutes) the registry will be updated.
frequency_seconds = 900