soundcloud-api-ts - v1.13.4
    Preparing search index...

    Interface SCRequestTelemetry

    Structured telemetry emitted after every API request.

    interface SCRequestTelemetry {
        durationMs: number;
        error?: string;
        method: "GET" | "POST" | "PUT" | "DELETE";
        path: string;
        retryCount: number;
        status: number;
    }
    Index

    Properties

    durationMs: number

    Total duration including retries, in milliseconds

    error?: string

    Error message if the request ultimately failed

    method: "GET" | "POST" | "PUT" | "DELETE"

    HTTP method used

    path: string

    API path or full URL

    retryCount: number

    Number of retries performed (0 = succeeded on first attempt)

    status: number

    Final HTTP status code