
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.
provenby-api
Advanced tools
Typed REST client for the ProvenBy API — zero dependencies, works in Node, Deno, Bun, and browsers.
Typed REST client for the ProvenBy API.
Zero dependencies. Works in Node 18+, Deno, Bun, Cloudflare Workers, and browsers.
npm install provenby-api
import { ProvenByClient } from 'provenby-api';
const client = new ProvenByClient({
apiKey: process.env.PROVENBY_KEY!,
});
// Search candidates
const { items } = await client.search({
skills: ['TypeScript', 'React'],
minScore: 100,
});
// Query a candidate — tiered (card → digest → full context)
const answers = await client.query(items[0].candidateId, [
'What is their strongest technical area?',
'Do they ship code?',
]);
// Create a role
const role = await client.createRole({
title: 'Senior Backend Engineer',
required_skills: [{ skill: 'TypeScript', minLevel: 'senior' }],
});
// Register a webhook
await client.registerWebhook(
'https://yourapp.com/webhooks/provenby',
['query.approved', 'signal.received'],
'your-hmac-secret',
);
new ProvenByClient({
apiKey: 'sk_provenby_...', // required
serverUrl: 'https://provenby.dev', // optional — defaults to prod
});
import { ProvenByError } from 'provenby-api';
try {
await client.query('bad-id', ['?']);
} catch (err) {
if (err instanceof ProvenByError) {
console.error(`${err.status}: ${err.message}`);
// 401 → check API key
// 404 → candidate not found
// 429 → rate limited — respect Retry-After
}
}
Free tier: 10 queries/min + 30 searches/min. Paid tier: 50 queries/min.
All responses include X-RateLimit-Remaining and Retry-After headers.
npm run build # produces dist/index.{js,cjs,d.ts}
FAQs
Typed REST client for the ProvenBy API — zero dependencies, works in Node, Deno, Bun, and browsers.
We found that provenby-api 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.