
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
@passbase/node
Advanced tools
Welcome to the Passbase Verifications API docs. This documentation will help you understand our models and the Verification API with its endpoints. Based on this you can build your own system (i.e. verification) and hook it up to Passbase.
This package is a client meant to be used on the server-side to communicate with Passbase servers. You can find more information here: https://docs.passbase.com/server/api
Example how to use the SDK
const {
PassbaseClient,
PassbaseConfiguration,
ResponseFormats,
} = require("@passbase/node");
async function main() {
const apiKey = "[redacted]";
const config = new PassbaseConfiguration({
apiKey,
format: ResponseFormats.Json,
});
const client = new PassbaseClient(config);
const settings = await client.getSettings();
console.log(JSON.stringify(settings, null, 4));
}
main().catch(err => {
console.error(err);
process.exit(1);
});
All URIs are relative to https://api.passbase.com/verification/v2
Class | Method | HTTP request | Description |
---|---|---|---|
VerificationApi.IdentityApi | getIdentityById | GET /identities/{id} | Get identity |
VerificationApi.IdentityApi | getIdentityResourceById | GET /identity/{id}/resources/{resource_id} | Get resource |
VerificationApi.IdentityApi | getIdentityResourceFileById | GET /identity/{id}/resources/{resource_id}/resource_files/{resource_file_id} | Get resource file |
VerificationApi.IdentityApi | listIdentities | GET /identities | List identities |
VerificationApi.IdentityApi | listIdentityResources | GET /identity/{id}/resources | List resources |
VerificationApi.ProjectApi | getSettings | GET /settings | Get project settings |
FAQs
Passbase API client for NodeJS
The npm package @passbase/node receives a total of 784 weekly downloads. As such, @passbase/node popularity was classified as not popular.
We found that @passbase/node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.