@cpod/sdk - v0.2.7
    Preparing search index...

    Function getExpertStats

    • Get expert usage statistics

      Returns Promise<ExpertStats[]>

      Array of expert statistics

      401 - Not authenticated

      import { getExpertStats } from "@cpod/sdk";

      const stats = await getExpertStats();
      stats.forEach(expert => {
      console.log(`${expert.name}: ${expert.usage_count} uses`);
      });