curl --request POST \
--url https://app.spotzee.com/api/ext/generic/dns/url-verifier \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data url=https://example.com{
"status": "success",
"data": {
"connection": "success"
}
}Comprehensively tests URL accessibility including HTTP status, response time, redirect chains, and SSL certificate validation. Follows redirects automatically and provides detailed information about the entire request chain.
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/dns/url-verifier \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data url=https://example.com{
"status": "success",
"data": {
"connection": "success"
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
Full URL to verify accessibility (must include protocol)
"https://example.com"
Was this page helpful?