curl --request POST \
--url https://app.spotzee.com/api/ext/generic/dns/tcp-verifier \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data domain_ip=example.com \
--data port=443{
"status": "success",
"data": {
"connection": "success"
}
}Tests TCP connectivity to a specific domain/IP address and port. Useful for checking if services are accessible, debugging network issues, and monitoring service availability. Supports both IPv4 and IPv6 addresses.
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/dns/tcp-verifier \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data domain_ip=example.com \
--data port=443{
"status": "success",
"data": {
"connection": "success"
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
Was this page helpful?