Duplicate tags
GET /api/v1/crawl/{id}/duplicate-tags
Pages across the crawl that share an identical title, meta description, or H1, grouped by the duplicated value — so you can fix the worst offenders first.
Path & query
| Name | Type | Description |
|---|---|---|
jobId required | string | The crawl job id (path parameter). |
Request
Response
200 · application/json
- {
- "jobId": "crw_7Hk29fQ",
- "startUrl": "https://example.com",
- "host": "example.com",
- "status": "done",
- "maxPages": 50,
- "createdAt": "2026-06-02T13:24:49.414Z",
- "finishedAt": "2026-06-02T13:24:52.055Z",
- "duplicateTitles": [
- {
- "value": "Home | Example",
- "count": 3,
- "urls": ["https://example.com/", "https://example.com/index", "https://example.com/home"]
- }
- ],
- "duplicateMetaDescriptions": [],
- "duplicateH1s": []
- }
Response fields
| Field | Type | Description |
|---|---|---|
duplicateTitles[] | object[] | Groups of pages that share the same title. Empty when none. |
duplicateMetaDescriptions[] | object[] | Groups of pages that share the same meta description. Empty when none. |
duplicateH1s[] | object[] | Groups of pages that share the same H1. Empty when none. |
value | string | The shared text for a group. |
count | integer | How many pages share that value. |
urls[] | string[] | The pages sharing the value (capped at 50). |
See Errors for status codes.