
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@parseapi/sdk
Advanced tools
Official parseAPI client for Node and TypeScript. One key, minimal JSON, fast.
Official parseAPI client for Node and TypeScript.
npm install @parseapi/sdk
import { parseAPI } from '@parseapi/sdk';
const parse = parseAPI('your-api-key');
const country = await parse.country('US');
Get a key at parseapi.com. The client also reads PARSEAPI_KEY from the environment.
One method per endpoint, named after the route.
await parse.ip('8.8.8.8');
await parse.ip.self();
await parse.email('hello@gmail.com');
await parse.phone('+14155552671');
await parse.postal('28202', { country: 'US' });
await parse.postal.nearby('28202', { country: 'US', radius: 40 });
await parse.postal.distance('28202', '10001', { country: 'US' });
await parse.city('charlotte', { country: 'US' });
await parse.city.id('city_mb8mbqrkz8zb');
await parse.city.search('char', { country: 'US', limit: 10 });
await parse.city.nearest(35.2271, -80.8431);
await parse.country('US');
await parse.country.states('US');
await parse.state('NC', { country: 'US' });
await parse.state.districts('NC', { country: 'US' });
await parse.district('37081');
await parse.continent('NA');
await parse.continent.countries('NA');
await parse.currency('USD');
await parse.currency.rate('USD', 'EUR');
await parse.language('en');
await parse.name('BILLY OSHALL');
await parse.timezone('America/New_York');
await parse.timezone(40.7128, -74.006);
await parse.holiday('US', { year: 2026 });
await parse.holiday.date('US', '2026-12-25');
await parse.elevation(35.2271, -80.8431);
await parse.point(36.0726, -79.792);
await parse.weather(40.7128, -74.006);
await parse.domain('example.com');
await parse.mx('example.com');
await parse.useragent(uaString);
await parse.emoji('rocket');
await parse.emoji.search('fire');
Every response is fully typed.
Pass deep: true to include the nested deep object with richer fields.
const ip = await parse.ip('52.94.76.10', { deep: true });
ip.deep?.datacenter; // true
Every non-2xx response throws a ParseAPIError with status, code, docs, and requestId. Branch on code.
import { ParseAPIError } from '@parseapi/sdk';
try {
await parse.city('atlantis');
} catch (err) {
if (err instanceof ParseAPIError && err.code === 'not_found') {
// no such city
}
}
const parse = parseAPI('your-api-key', {
timeoutMs: 10000, // per-attempt timeout
retries: 2, // automatic retries on network errors, 429, and 5xx
});
Requires Node 18 or later. Zero dependencies.
Full field reference for every endpoint: parseapi.com/docs
FAQs
Official parseAPI client for Node and TypeScript. One key, minimal JSON, fast.
We found that @parseapi/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.