Skip to main content

Internal Broken Links

All instances of links where the target URL return a broken status code (400, 404, 410, 500, or 501).

Priority: Low

Impact: Neutral

How to fetch the data for this report template​

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlLinks {
urlFrom
urlFromTitle
anchorText
urlTo
urlToTitle
urlFromDeeprank
urlToDeeprank
urlFromStatusCode
urlToStatusCode
}
}
}
}
}
}

Try in explorer