soundcloud-api-ts-next
    Preparing search index...

    Interface SCRouteError

    Structured JSON error envelope returned by all route handlers.

    createSoundCloudRoutes for configuration

    interface SCRouteError {
        code: string;
        message: string;
        requestId: string;
        status: number;
    }
    Index

    Properties

    code: string

    Machine-readable error code (e.g. "NOT_FOUND", "UNAUTHORIZED", "FORBIDDEN").

    message: string

    Human-readable error description.

    requestId: string

    Per-request UUID for distributed tracing.

    status: number

    HTTP status code (mirrors the response status).