Skip to main content

kb-details

const kbDetails = async (input, config) => {
const response = await axios.post('knowledgebase/details', input, config)
return response.data;
};

input = {
ids: ['Q42'],
language: 'en',
externalSource: 'wikidata'
};

kbDetails(input, config).then(report);