# Duplicate Title Sets Sets of pages which share an identical title tag, excluding pages connected with reciprocal hreflangs. **Priority**: High **Impact**: Negative ## What issues it may cause If titles are the duplicated on multiple pages; ## How do you fix it The pages titles should be reviewed and customized for each page within the set to make them unique and more relevant to the page content. ## What is the positive impact ## 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: ```graphql query GetReportStatForCrawl( $crawlId: ObjectID! $reportTemplateCode: String! $after: String ) { getReportStat( input: {crawlId: $crawlId, reportTemplateCode: $reportTemplateCode} ) { crawlDuplicateUrls(after: $after, reportType: Basic) { nodes { pageTitle description primaryUrl exampleDuplicate1 exampleDuplicate2 duplicateCount deeprank level duplicateType } totalCount pageInfo { endCursor hasNextPage } } } } ``` **Variables:** ```json {"crawlId":"TjAwNUNyYXdsNDAwMA","reportTemplateCode":"duplicate_titles_2"} ```