serpnode 0.1.0
serpnode: ^0.1.0 copied to clipboard
Dart client for serpnode.com (Google SERP data). Endpoints: status, search, options, locations. See https://serpnode.com
example/main.dart
import 'package:serpnode/serpnode.dart';
void main() async {
final client = SerpnodeClient('YOUR_API_KEY');
final results = await client.search({'q': 'site:screenshotbase.com', 'engine': 'google', 'num': 5});
print(results);
}