Try the RankNibbler SEO API

UDP port check Beta

POST /api/v1/monitors

Type udp: send a datagram and wait for a reply. Nothing acknowledges a datagram, so a reply is the only proof that anything is there.

There is no separate endpoint for this: it is the ordinary create a monitor call with type set to "udp". The same settings apply when you update a monitor with PATCH /api/v1/monitors/{id}.

Every type shares the same interval, retries, alerting, maintenance, results and reports. Only the settings below differ. See Check types for how the nine types compare.

Up or down

Settings that apply

SettingNotes
url requiredThe host to send to. Not a URL.
port required1 to 65535. This type has no standard port.
sendStringThe datagram to send. Up to 500 characters. \r, \n and \t are sent as real characters.
expectStringThe reply must contain this. Up to 500 characters.
timeoutSecondsHow long to wait for a reply.

Create one

Related