GET   checks/browser/{checkId}/results/{resultId}/stepdata?format={format}

Gets a file that contains browser check result data by step.

URL Parameters

NameDescription
checkId

Check identifier. Type: numeric.

resultId

Check result identifier. Type: GUID.

format

File format. Type: string. Available formats: csv, json.

Remarks


The default context for the route is the user context. To enable customer context (if it's allowed for the user) use the request query parameter customer_context=1.

Request example

curl --request GET "https://api-asm1.apica.io/v3/checks/browser/12345/results/b1d01c2d-341d-4b7b-be0c-02e290483fd4/stepdata?format=json&auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E"

Response body model example and description

{
  "check_id": 1,
  "result_id": "048d74d5-d7aa-4135-a12a-ec7f675c6627",
  "time_stamp_utc": "2024-05-19T10:14:55",
  "step_results": [
    {
      "step": 3,
      "step_name": "Step #3",
      "url_count": 1,
      "started_utc": "2024-05-19T10:14:55",
      "elapsed_ms": 2000,
      "received_bytes": 100000,
      "sent_bytes": 20000,
      "compressed_content_bytes": 45678,
      "started_utc_iso_8601": "2024-05-19T10:14:55",
      "dom_interactive_ms": 1038,
      "dom_content_loaded_ms": 1138,
      "dom_complete_ms": 1338
    },
    {
      "step": 3,
      "step_name": "Step #3",
      "url_count": 1,
      "started_utc": "2024-05-19T10:14:55",
      "elapsed_ms": 1000,
      "received_bytes": 300000,
      "sent_bytes": 30000,
      "compressed_content_bytes": 45678,
      "started_utc_iso_8601": "2024-05-19T10:14:55",
      "dom_interactive_ms": 1038,
      "dom_content_loaded_ms": 1138,
      "dom_complete_ms": 1338
    },
    {
      "step": 3,
      "step_name": "Step #3",
      "url_count": 1,
      "started_utc": "2024-05-19T10:14:55",
      "elapsed_ms": 2000,
      "received_bytes": 300000,
      "sent_bytes": 30000,
      "compressed_content_bytes": 23456,
      "started_utc_iso_8601": "2024-05-19T10:14:55",
      "dom_interactive_ms": 1038,
      "dom_content_loaded_ms": 1138,
      "dom_complete_ms": 1338
    }
  ]
}
NameType Description
step_results Array

The steps data of the result.

step Integer

The number of the step.

step_name String

The name of the step.

url_count Integer

URL count.

started_utc DateTime

The step started timestamp in UTC.

elapsed_ms Integer

Elapsed ms.

received_bytes Integer

Received bytes.

sent_bytes Integer

Sent bytes.

compressed_content_bytes Integer

Compressed content bytes.

started_utc_iso_8601 String

The step started timestamp in UTC ISO 8601.

dom_interactive_ms Integer

DOM Interactive.

dom_content_loaded_ms Integer

DOM Content Loaded.

dom_complete_ms Integer

DOM Complete.

check_id Integer

The numeric identifier of the check.

result_id Guid

The GUID of the check result.

time_stamp_utc DateTime

The check result timestamp in UTC.