Skip to main content

Response times

GET 

/project/:id/responseTimes

Return response times of project in selected period

Request

Path Parameters

    id stringrequired

    A unique project ID

    Example: 5e9602e7a39e5a46428b457f

Query Parameters

    start stringrequired

    Period start date in ISO8601 format

    Example: 2022-10-31T00:00:00.000+01:00
    end string

    Period end date in ISO8601 format (default now)

    Example: 2022-10-31T00:00:00.000+01:00

Responses

Array of response times

Schema

  • Array [

  • responseDate string

    Response date

    Example: 2023-03-23T12:53:20+00:00
    dnsLookupTime number

    DNS lookup time

    Example: 3
    initialConnectionTime number

    Initial connection time

    Example: 17
    sslTime number

    SSL time

    Example: 26
    requestTime number

    Request time

    Example: 0
    waitingTime number

    Waiting time

    Example: 39
    contentDownloadTime number

    Content download time

    Example: 7
    totalResponseTime number

    Total response time

    Example: 89
  • ]