
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
pinterest-url-normalizer
Advanced tools
Parse, classify, and normalize Pinterest URLs without network requests.
Parse, classify, and normalize Pinterest URLs without making network requests.
The package recognizes Pin, pin.it, profile, board, and Ideas URLs across Pinterest country domains. It uses an exact host allow list, rejects HTTP URLs and lookalike domains, and removes tracking parameters from normalized output.
npm install pinterest-url-normalizer
JSR users can install the same TypeScript source package with:
npx jsr add @savepinner/pinterest-url-normalizer
import {
isPinterestUrl,
normalizePinterestUrl,
parsePinterestUrl,
} from "pinterest-url-normalizer";
const parsed = parsePinterestUrl(
"https://de.pinterest.com/pin/987654321/?utm_source=share",
);
console.log(parsed.kind); // "pin"
console.log(parsed.pinId); // "987654321"
console.log(parsed.normalizedUrl);
// https://www.pinterest.com/pin/987654321/
isPinterestUrl("https://pin.it/AbC123"); // true
normalizePinterestUrl("https://pinterest.co.uk/savepinner/media-tools/");
// https://www.pinterest.com/savepinner/media-tools/
| Kind | Example |
|---|---|
pin | https://www.pinterest.com/pin/123456789/ |
short | https://pin.it/AbC123 |
profile | https://www.pinterest.com/savepinner/ |
board | https://www.pinterest.com/savepinner/media-tools/ |
ideas | https://www.pinterest.com/ideas/space-wallpaper/926295399832/ |
pin.it links are classified and normalized but are not followed. Resolving them requires a network request and belongs in the consuming application.
parsePinterestUrl(input)Returns a discriminated object with kind, originalUrl, normalizedUrl, and type-specific fields. Throws PinterestUrlError with code INVALID_URL or UNSUPPORTED_URL when parsing fails.
normalizePinterestUrl(input)Returns the canonical URL. Full Pinterest URLs use www.pinterest.com; short links retain pin.it because resolving them requires network access.
isPinterestUrl(input)Returns true when the value is one of the supported URL forms.
isPinterestHost(host)Checks a hostname against the package's exact Pinterest country-domain allow list.
This parser is maintained by the team behind the Pinterest image downloader, a browser tool for inspecting media exposed by public Pinterest Pin URLs. The package contains no downloader, tracking, browser automation, or remote code.
Pinterest is a trademark of Pinterest, Inc. This project is independent and is not affiliated with or endorsed by Pinterest.
MIT
FAQs
Parse, classify, and normalize Pinterest URLs without network requests.
The npm package pinterest-url-normalizer receives a total of 291 weekly downloads. As such, pinterest-url-normalizer popularity was classified as not popular.
We found that pinterest-url-normalizer 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.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.