
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@apiosk/sdk
Advanced tools
Official JavaScript SDK for discovering and executing Apiosk APIs.
After publishing to npm:
npm install @apiosk/sdk
Before publishing, install directly from this repo checkout:
npm install ./subs/sdk-js
import { ApioskClient } from "@apiosk/sdk";
const client = new ApioskClient();
const catalog = await client.listApis({ search: "diff", limit: 5 });
const metadata = await client.getMetadata("agent-json-diff");
const result = await client.execute("agent-json-diff", {
before: { ok: true },
after: { ok: false }
});
console.log(catalog.meta.total);
console.log(metadata.execute.default_operation);
console.log(result.result);
If you provide a Base wallet private key, the SDK retries 402 Payment Required
responses automatically by using Coinbase's x402 client packages.
import { ApioskClient } from "@apiosk/sdk";
const client = new ApioskClient({
privateKey: process.env.APIOSK_PRIVATE_KEY
});
const response = await client.execute("agent-json-diff", {
before: { ok: true },
after: { ok: false }
});
For dashboard-managed access, you can send a connect token or explicit auth header:
const client = new ApioskClient({
connectToken: process.env.APIOSK_CONNECT_TOKEN
});
const client = new ApioskClient({
authorization: `Bearer ${process.env.APIOSK_BEARER_TOKEN}`
});
listApis(params)getApi(slug)getMetadata(slug)execute(slug, input, options)executeOperation(slug, operation, input, options)passthrough(slug, path, options)ApioskHttpErrorApioskPaymentRequiredErrorThe payment-required error includes the parsed 402 body so callers can inspect
the accepted payment rails and attach their own proof if they are not using the
built-in EVM flow.
FAQs
Official JavaScript SDK for the Apiosk gateway
We found that @apiosk/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
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.