Interface NexusProfile

interface NexusProfile {
    active: string;
    blacklists: [];
    context?: {
        followed: boolean;
    };
    created: string;
    id: number;
    metadata: {
        profile: {
            about: string;
            cover_image: string;
            location: string;
            name: string;
            profile_image: string;
            website: string;
        };
    };
    name: string;
    post_count: number;
    stats: {
        bp: number;
        followers: number;
        following: number;
        rank: number;
        referrer: null | string;
    };
}

Properties

active: string
blacklists: []
context?: {
    followed: boolean;
}
created: string
id: number
metadata: {
    profile: {
        about: string;
        cover_image: string;
        location: string;
        name: string;
        profile_image: string;
        website: string;
    };
}
name: string
post_count: number
stats: {
    bp: number;
    followers: number;
    following: number;
    rank: number;
    referrer: null | string;
}

Type declaration

  • bp: number

    Estimated BLURT Power, canonical Nexus field name.

  • followers: number
  • following: number
  • rank: number
  • referrer: null | string