JSMonitor

Get URLs with multiple responses (same URL, different jsmonId/hash)

get
/api/v2/getUrlsWithMultipleResponse
Authorizations
Query parameters
pagestringOptional

Page number for pagination

Default: 1
sizestringOptional

Number of records per page

Default: 25
wkspIdstringOptional

Workspace ID to filter the URLs

searchstringOptional

Filter URLs by search keyword

Responses
200

Successfully fetched URLs with multiple responses

application/json
get
/api/v2/getUrlsWithMultipleResponse
GET /api/v2/getUrlsWithMultipleResponse HTTP/1.1
Host: api-dev.jsmon.sh
Accept: */*
{
  "message": "Successfully fetched URLs with multiple responses",
  "data": [
    {
      "url": "text",
      "entries": [
        {
          "jsmonId": "text",
          "hash": "text",
          "createdAt": "2025-10-19T12:44:28.178Z",
          "wordCount": 1
        }
      ]
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 1,
    "totalDocuments": 1,
    "pageSize": 1
  }
}