dart_naver_datalab 0.1.0
dart_naver_datalab: ^0.1.0 copied to clipboard
An unofficial Dart client for all current NAVER DataLab non-login APIs.
dart_naver_datalab #
An unofficial Dart client for all nine DataLab operations in NAVER's current non-login API catalog: integrated search trends plus every Shopping Insight category and keyword trend breakdown.
NaverWithoutLoginApi.init(clientId: clientId, clientSecret: clientSecret);
final trends = await DatalabApi.searchTrends(
startDate: DateTime(2026, 1, 1),
endDate: DateTime(2026, 1, 31),
timeUnit: TrendTimeUnit.date,
keywordGroups: [
SearchKeywordGroup(name: 'Dart', keywords: ['dart', 'flutter']),
],
);
See the official DataLab documentation. The package is not endorsed by NAVER.