
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@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.timezone('America/New_York');
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.
The npm package @parseapi/sdk receives a total of 30 weekly downloads. As such, @parseapi/sdk popularity was classified as not popular.
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.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.