Integrations

Node.js SDK

Install the official Node.js SDK:

npm install @localseodata/sdk

**Quick Start**

import { LocalSEOData } from "@localseodata/sdk";

const client = new LocalSEOData({ apiKey: "sk_live_your_key" });

// Local pack rankings const results = await client.localPack({ keyword: "plumber", location: "Denver, CO" });

// Geogrid scan const grid = await client.geogridScan({ business: "Joe's Pizza", location: "Brooklyn, NY", keyword: "pizza", gridSize: "5x5" });

// Full audit const audit = await client.localAudit({ businessName: "Mike's Plumbing", location: "Denver, CO" });

**Features** - TypeScript types included - Automatic retries with exponential backoff - Credit usage tracking - Works in Node.js, Deno, and Bun

Source code: github.com/localseodata/node-sdk