InkeepAnalytics SDK

July 30, 2025 ยท View on GitHub

Overview

Inkeep Analytics API: The Inkeep Analytics API provides endpoints for managing conversations, feedback, events, and queries. For details on authentication, see authentication documentation

Available Operations

topSearchQueries

Top Search Queries

Example Usage

import { InkeepAnalytics } from "@inkeep/inkeep-analytics";

const inkeepAnalytics = new InkeepAnalytics({
  apiIntegrationKey: process.env["INKEEPANALYTICS_API_INTEGRATION_KEY"] ?? "",
});

async function run() {
  const result = await inkeepAnalytics.topSearchQueries({});

  console.log(result);
}

run();

Standalone function

The standalone function version of this method:

import { InkeepAnalyticsCore } from "@inkeep/inkeep-analytics/core.js";
import { topSearchQueries } from "@inkeep/inkeep-analytics/funcs/topSearchQueries.js";

// Use `InkeepAnalyticsCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const inkeepAnalytics = new InkeepAnalyticsCore({
  apiIntegrationKey: process.env["INKEEPANALYTICS_API_INTEGRATION_KEY"] ?? "",
});

async function run() {
  const res = await topSearchQueries(inkeepAnalytics, {});
  if (res.ok) {
    const { value: result } = res;
    console.log(result);
  } else {
    console.log("topSearchQueries failed:", res.error);
  }
}

run();

React hooks and utilities

This method can be used in React components through the following hooks and associated utilities.

Check out this guide for information about each of the utilities below and how to get started using React hooks.

import {
  // Query hooks for fetching data.
  useTopSearchQueries,
  useTopSearchQueriesSuspense,

  // Utility for prefetching data during server-side rendering and in React
  // Server Components that will be immediately available to client components
  // using the hooks.
  prefetchTopSearchQueries,
  
  // Utilities to invalidate the query cache for this query in response to
  // mutations and other user actions.
  invalidateTopSearchQueries,
  invalidateAllTopSearchQueries,
} from "@inkeep/inkeep-analytics/react-query/topSearchQueries.js";

Parameters

ParameterTypeRequiredDescription
requestoperations.TopSearchQueriesRequest:heavy_check_mark:The request object to use for the request.
optionsRequestOptions:heavy_minus_sign:Used to set various options for making HTTP requests.
options.fetchOptionsRequestInit:heavy_minus_sign:Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.
options.retriesRetryConfig:heavy_minus_sign:Enables retrying HTTP requests under certain failure conditions.

Response

Promise<operations.TopSearchQueriesResponseBody>

Errors

Error TypeStatus CodeContent Type
errors.BadRequest400application/problem+json
errors.Unauthorized401application/problem+json
errors.Forbidden403application/problem+json
errors.UnprocessableEntity422application/problem+json
errors.InternalServerError500application/problem+json
errors.APIError4XX, 5XX*/*

weeklySearchUsers

Weekly Search Users

Example Usage

import { InkeepAnalytics } from "@inkeep/inkeep-analytics";

const inkeepAnalytics = new InkeepAnalytics({
  apiIntegrationKey: process.env["INKEEPANALYTICS_API_INTEGRATION_KEY"] ?? "",
});

async function run() {
  const result = await inkeepAnalytics.weeklySearchUsers({});

  console.log(result);
}

run();

Standalone function

The standalone function version of this method:

import { InkeepAnalyticsCore } from "@inkeep/inkeep-analytics/core.js";
import { weeklySearchUsers } from "@inkeep/inkeep-analytics/funcs/weeklySearchUsers.js";

// Use `InkeepAnalyticsCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const inkeepAnalytics = new InkeepAnalyticsCore({
  apiIntegrationKey: process.env["INKEEPANALYTICS_API_INTEGRATION_KEY"] ?? "",
});

async function run() {
  const res = await weeklySearchUsers(inkeepAnalytics, {});
  if (res.ok) {
    const { value: result } = res;
    console.log(result);
  } else {
    console.log("weeklySearchUsers failed:", res.error);
  }
}

run();

React hooks and utilities

This method can be used in React components through the following hooks and associated utilities.

Check out this guide for information about each of the utilities below and how to get started using React hooks.

import {
  // Query hooks for fetching data.
  useWeeklySearchUsers,
  useWeeklySearchUsersSuspense,

  // Utility for prefetching data during server-side rendering and in React
  // Server Components that will be immediately available to client components
  // using the hooks.
  prefetchWeeklySearchUsers,
  
  // Utilities to invalidate the query cache for this query in response to
  // mutations and other user actions.
  invalidateWeeklySearchUsers,
  invalidateAllWeeklySearchUsers,
} from "@inkeep/inkeep-analytics/react-query/weeklySearchUsers.js";

Parameters

ParameterTypeRequiredDescription
requestoperations.WeeklySearchUsersRequest:heavy_check_mark:The request object to use for the request.
optionsRequestOptions:heavy_minus_sign:Used to set various options for making HTTP requests.
options.fetchOptionsRequestInit:heavy_minus_sign:Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body, are allowed.
options.retriesRetryConfig:heavy_minus_sign:Enables retrying HTTP requests under certain failure conditions.

Response

Promise<operations.WeeklySearchUsersResponseBody>

Errors

Error TypeStatus CodeContent Type
errors.BadRequest400application/problem+json
errors.Unauthorized401application/problem+json
errors.Forbidden403application/problem+json
errors.UnprocessableEntity422application/problem+json
errors.InternalServerError500application/problem+json
errors.APIError4XX, 5XX*/*