
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.
@metalift/sdk
Advanced tools
Official TypeScript/JavaScript SDK for Metalift — turn any URL into agent-ready markdown, HTML, or structured data.
import, not require()npm install @metalift/sdk
import Metalift from "@metalift/sdk";
const client = new Metalift({ apiKey: "YOUR_API_KEY" });
const result = await client.scrape({
url: "https://example.com",
formats: ["markdown"],
});
console.log(result.data.markdown);
Get an API key from the Metalift dashboard.
Search returns top 10 SERP snippets (2 credits). Scrape URLs separately when you need full content (1+ credits each):
const serp = await client.search({ query: "docker docs" });
for (const hit of serp.results) {
console.log(hit.title, hit.url);
}
const page = await client.scrape({
url: serp.results[0].url,
formats: ["markdown"],
});
console.log(page.data.markdown);
import Metalift from "@metalift/sdk";
const client = new Metalift({
apiUrl: "https://api.metalift.ai", // default
apiKey: process.env.METALIFT_API_KEY,
});
| Variable | Description |
|---|---|
METALIFT_API_URL | API base URL (default: https://api.metalift.ai) |
METALIFT_API_KEY | Bearer token for authenticated requests |
This package is ESM-only. In CommonJS projects, use dynamic import:
const { default: Metalift } = await import("@metalift/sdk");
Or add "type": "module" to your package.json, or use .mjs entry files.
FAQs
Metalift TypeScript SDK
The npm package @metalift/sdk receives a total of 68 weekly downloads. As such, @metalift/sdk popularity was classified as not popular.
We found that @metalift/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.
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.