Skip to main content
GET
/
sitemap
/
urls
List Sitemap URLs
curl --request GET \
  --url https://server.promptwatch.com/api/v2/sitemap/urls \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "url": "https://example.com/inventory/123",
      "rawUrl": "https://example.com/inventory/123/",
      "status": "ERROR",
      "httpStatus": 403,
      "crawlAttempts": 3,
      "lastCrawledAt": "2026-05-18T12:00:00.000Z",
      "redirectsTo": null,
      "createdAt": "2026-04-01T08:00:00.000Z",
      "updatedAt": "2026-05-18T12:00:00.000Z"
    }
  ],
  "total": 142,
  "page": 1,
  "size": 50,
  "totalPages": 3
}

Documentation Index

Fetch the complete documentation index at: https://promptwatch.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key for authentication. Get yours from the Promptwatch dashboard under Settings > API Keys.

Query Parameters

filter
enum<string>

Optional. Narrow results: errored (failed/blocked), redirected (3xx with target), inProgress (queued for crawl). Omit to return all crawl-scope URLs.

Available options:
errored,
redirected,
inProgress
page
integer
default:1

Page number (1-based)

Required range: x >= 1
size
integer
default:50

Page size

Required range: 1 <= x <= 100
sortBy
enum<string>
default:lastContentCrawledAt

Field to sort by

Available options:
canonical,
lastContentCrawlHttpStatus,
contentCrawlAttempts,
lastContentCrawledAt,
updatedAt,
createdAt
sortOrder
enum<string>
default:desc

Sort direction

Available options:
asc,
desc
httpStatuses

When filter=errored, restrict to specific HTTP status codes. Repeat the param for multiple values.

Response

Default Response

items
object[]
required
total
integer
required

Total items matching the request

page
integer
required

Page number (1-based)

size
integer
required

Page size

totalPages
integer
required

Total pages for this page size