AutomationResults

Get all JS URLs results based on input type and input value

get
/api/v2/getAllJsUrlsResults

Fetches the results of JS URLs based on input type and input value for the authenticated user. Supports pagination, sorting, and workspace filtering.

Query parameters
inputTypestring · enumRequired

Type of input to search for (e.g., domainname, url, etc.)

Possible values:
inputstringRequired

Input value to search based on input type

sizestringOptional

Number of records per page (default is 10)

startstringOptional

Starting index for pagination (default is 0)

sortBystring · enumOptional

Field to sort by (default is 'url')

Possible values:
sortOrderstring · enumOptional

Sort order (default is 'asc')

Possible values:
wkspIdstringOptional

Workspace ID for filtering

Responses
200

Successful operation

application/json
get
/api/v2/getAllJsUrlsResults
GET /api/v2/getAllJsUrlsResults?inputType=domainname&input=text HTTP/1.1
Host: api-dev.jsmon.sh
Accept: */*
{
  "results": [
    {
      "url": "text",
      "jsmonId": "text",
      "createdAt": "2025-10-19T12:42:55.390Z"
    }
  ]
}