abuseipdb-client - v1.0.21
    Preparing search index...

    Interface APICheckEndpointResponse

    AbuseIPDB's Check endpoint JSON structure.

    interface APICheckEndpointResponse {
        data: {
            abuseConfidenceScore: number;
            countryCode: null | string;
            countryName?: null | string;
            domain: null | string;
            hostnames: string[];
            ipAddress: string;
            ipVersion?: number;
            isp: null | string;
            isPublic: boolean;
            isTor: boolean;
            isWhitelisted: boolean;
            lastReportedAt: string;
            numDistinctUsers: number;
            reports: ReportsEntity[];
            totalReports: number;
            usageType: UsageType;
        };
    }
    Index

    Properties

    Properties

    data: {
        abuseConfidenceScore: number;
        countryCode: null | string;
        countryName?: null | string;
        domain: null | string;
        hostnames: string[];
        ipAddress: string;
        ipVersion?: number;
        isp: null | string;
        isPublic: boolean;
        isTor: boolean;
        isWhitelisted: boolean;
        lastReportedAt: string;
        numDistinctUsers: number;
        reports: ReportsEntity[];
        totalReports: number;
        usageType: UsageType;
    }