Skip to main content
GET
/
scanners
/
{scanner_uid}
/
runs
/
{run_uid}
Get Scanner Run Details
curl --request GET \
  --url https://oathnet.org/api/scanners/{scanner_uid}/runs/{run_uid} \
  --header 'x-api-key: <api-key>'
{
  "uid": "<string>",
  "status": "<string>",
  "status_display": "<string>",
  "started_at": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "duration_seconds": 123,
  "search_from": "2023-11-07T05:31:56Z",
  "search_to": "2023-11-07T05:31:56Z",
  "results_count": 123,
  "results_sample": [
    "<unknown>"
  ],
  "request_params_used": {},
  "execution_meta": {},
  "notification_sent": true,
  "notification_sent_at": "2023-11-07T05:31:56Z",
  "notification_error": "<string>",
  "error_message": "<string>",
  "search_url": "<string>",
  "previous_results_count": 123,
  "results_delta": 123,
  "notification_logs": [
    {
      "uid": "<string>",
      "attempt_number": 123,
      "attempted_at": "2023-11-07T05:31:56Z",
      "success": true,
      "response_status_code": 123,
      "error_message": "<string>",
      "response_excerpt": "<string>",
      "delivery_id": "<string>",
      "security_mode": "<string>",
      "target": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.oathnet.org/llms.txt

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

Return one scanner run with notification attempts and delivery details.

Authorizations

x-api-key
string
header
required

API key for authentication (lowercase header name)

Path Parameters

scanner_uid
string
required
run_uid
string
required

Response

200 - application/json

Raw scanner run detail

uid
string
status
string
status_display
string
started_at
string<date-time>
completed_at
string<date-time>
duration_seconds
number
search_from
string<date-time>
search_to
string<date-time>
results_count
integer
results_sample
any[]
request_params_used
object
execution_meta
object
notification_sent
boolean
notification_sent_at
string<date-time>
notification_error
string
error_message
string
search_url
string
previous_results_count
integer
results_delta
integer
notification_logs
object[]