Scans
Get Scan Results
Use this API to retrieve results for a specific scan, including details such as cookies, tags, forms, etc.
get/api/cmp/v1/webscans/domains/{domainId}/scans/{scanId}/scanresults
Path parameters
domainIdstring uuid required
The unique identifier of the domain.
scanIdstring uuid required
The unique identifier of the scan.
Query parameters
languagestring
The language code for localized content.
countryCodestring
The country code for regional settings.
entityType'COOKIE' | 'TAG' | 'PAGE' | 'FORM' | 'SERVICE' | 'STORAGE' required
The type of entity such as cookie, tag, page, form, service, or storage.
pageinteger
Example:1
The page number for pagination results, starting from 0.
sizeinteger
Example:10
The number of items to return per page.
Response
Returns detailed scan results.
Example response
{
"content": [
{
"cookieId": "f2229953-b4b5-4042-8cb9-b78038cc4c46",
"cookieName": "session_id",
"host": "example.com"
}
],
"scanId": "123e4567-e89b-12d3-a456-426614174000",
"domainId": "123e4567-e89b-12d3-a456-426614174000",
"totalElements": 100,
"totalPages": 99,
"pageSize": 5,
"pageNumber": 1,
"numberOfElements": 5
}