This call is used to retrieve detailed endpoint information. It will return a single Endpoint object on success. The object will contain complete assessment information. This API call does not initiate new assessments, even when a cached report is not found.

get_endpoint_data(host, ip, from_cache = FALSE)

Arguments

host

hostname; required.

ip

endpoint IP address

from_cache

always deliver cached assessment reports if available; optional, defaults to FALSE. This parameter is intended for API consumers that don't want to wait for assessment results. Can't be used at the same time as the start_new parameter.

References

https://github.com/ssllabs/ssllabs-scan/blob/stable/ssllabs-api-docs-v3.md

Examples

# NOT RUN {
get_endpoint_data("www.ssllabs.com", "64.41.200.100", TRUE)
# }