Registered Services

14 services

A list of known APRS services so operators can find them quickly. Click a card to see details.

Active Service is responding to health checks Pending Service recently failed health checks (may be temporarily unavailable) Down Service has been unresponsive for 24+ hours
REPEAT Active

Find nearest repeaters to your last beacon! send 'help nearest' to callsign 'REPEAT'

100%
https://aprs-repeat.hemna.com
WXNOW Active

APRS Service to report local weather

100%
http://aprs-wxnow.hemna.com/
WB4BOR-11 Active

WB4BOR's development APRSD server https://www.aprsradio.online

100%
https://aprsradio.online
WXBOT Active

WxBot is an APRS-IS listener app that listens for messages and responds with a brief US National Weather Service forecast

100%
https://sites.google.com/site/ki6wjp/wxbot
WXYO Active

Send a message to WXYO for a weather forecast at your location.

100%
https://sites.google.com/site/ki6wjp/wxbot
APRSPH Pending

APRSPH is a network of licensed amateur radio operators who share messages and position packets through radio and internet.

40%
http://aprsph.net
WA1GOV-10 Active

Send an APRS message to WA1GOV-10 with a single uppercase SAT entry!

100%
https://www.qrz.com/db/WA1GOV
IRC Active

APRS IRC like service with support for creating/joining channels. Send '/help' to callsign IRC

100%
http://aprs-irc.hemna.com
W0CTS-15 Active

APRSD server owned by W0CTS

100%
sites.google.com/view/w0cts
KG5JNC-10 Pending

err-aprs-backend powered bot

0%
No website provided
IURIJI-6 Pending

APRS Bot

0%
iu3iji.esse.re
IU3IJI-6 Pending

APRS Bot

0%
iu3iji.esse.re
JOKE Active

Get Jokes over APRS!!

100%
http://aprsradio.online
REPEAT-1 Pending

Test dev REPEAT instance

0%
http://aprsradio.online

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