Interface AnalyzedInspectURL

Analyzed inspect URL structure

interface AnalyzedInspectURL {
    original_url: string;
    cleaned_url: string;
    url_type: "masked" | "unmasked";
    is_quoted: boolean;
    market_id?: string;
    owner_id?: string;
    asset_id?: string;
    class_id?: string;
    hex_data?: string;
}

Properties

original_url: string

Original input URL

cleaned_url: string

Cleaned/normalized URL

url_type: "masked" | "unmasked"

URL type classification

is_quoted: boolean

Whether URL uses %20 encoding

market_id?: string

Market listing ID (for unmasked URLs)

owner_id?: string

Steam user ID (for unmasked URLs)

asset_id?: string

Asset ID (for unmasked URLs)

class_id?: string

Class ID (for unmasked URLs)

hex_data?: string

Hex-encoded protobuf data (for masked URLs)