Registered Services
24 servicesA list of known APRS services so operators can find them quickly. Click a card to see details.
Announcement group server - join groups and send announcements to members with similar interests
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
Global server to facilitate initial contact between hams with similar interests
Gateway to forward APRS messages to Internet email
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
err-aprs-backend powered bot
Gateway to send radiograms to the National Traffic System (NTS) via APRS
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'
Two-way gateway between APRS and SMS (USA, Puerto Rico, Canada, Australia, UK)
Send an APRS message to WA1GOV-10 with a single uppercase SAT entry!
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
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://aprs.hemna.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://aprs.hemna.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