Data returned only for radical subjects.

interface WKRadicalData {
    amalgamation_subject_ids: number[];
    auxiliary_meanings: WKSubjectAuxiliaryMeaning[];
    character_images: WKRadicalCharacterImage[];
    characters: null | string;
    created_at: WKDatableString;
    document_url: string;
    hidden_at: null | WKDatableString;
    lesson_position: number;
    level: WKLevel;
    meaning_mnemonic: string;
    meanings: WKSubjectMeaning[];
    slug: string;
    spaced_repetition_system_id: number;
    component_subject_ids?: undefined;
    context_sentences?: undefined;
    meaning_hint?: undefined;
    parts_of_speech?: undefined;
    pronunciation_audios?: undefined;
    reading_hint?: undefined;
    reading_mnemonic?: undefined;
    readings?: undefined;
    visually_similar_subject_ids?: undefined;
}

Hierarchy (view full)

Properties

amalgamation_subject_ids: number[]

An array of numeric identifiers for the kanji that have the radical as a component.

auxiliary_meanings: WKSubjectAuxiliaryMeaning[]

Collection of auxiliary meanings.

character_images: WKRadicalCharacterImage[]

A collection of images of the radical.

characters: null | string

The UTF-8 characters for the subject, including kanji and hiragana.

Unlike kanji and vocabulary, radicals can have a null value for characters. Not all radicals have a UTF entry, so the radical must be visually represented with an image instead.

created_at: WKDatableString

Timestamp when the subject was created.

document_url: string

A URL pointing to the page on wanikani.com that provides detailed information about this subject.

hidden_at: null | WKDatableString

Timestamp when the subject was hidden, indicating associated assignments will no longer appear in lessons or reviews and that the subject page is no longer visible on wanikani.com.

lesson_position: number

The position that the subject appears in lessons. Note that the value is scoped to the level of the subject, so there are duplicate values across levels.

level: WKLevel

The level of the subject, from 1 to 60.

meaning_mnemonic: string

The subject's meaning mnemonic.

meanings: WKSubjectMeaning[]

The subject meanings.

slug: string

The string that is used when generating the document URL for the subject. Radicals use their meaning, downcased. Kanji and vocabulary use their characters.

spaced_repetition_system_id: number

Unique identifier of the associated Spaced Repetition System.

component_subject_ids?: undefined

Radical subjects will never have a component_subject_ids property defined.

context_sentences?: undefined

Radical subjects will never have a context_sentences property defined.

meaning_hint?: undefined

Radical subjects will never have a meaning_hint property defined.

parts_of_speech?: undefined

Radical subjects will never have a parts_of_speech property defined.

pronunciation_audios?: undefined

Radical subjects will never have a pronunciation_audios property defined.

reading_hint?: undefined

Radical subjects will never have a reading_hint property defined.

reading_mnemonic?: undefined

Radical subjects will never have a reading_mnemonic property defined.

readings?: undefined

Radical subjects will never have a readings property defined.

visually_similar_subject_ids?: undefined

Radical subjects will never have a visually_similar_subject_ids property defined.