Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@fern-api/apiture

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fern-api/apiture

[![npm shield](https://img.shields.io/npm/v/@fern-api/apiture)](https://www.npmjs.com/package/@fern-api/apiture) [![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern)

  • 0.0.6
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
3
Weekly downloads
 
Created
Source

Apiture Node Library

npm shield fern shield

The Apiture Node.js library provides access to the Apiture API from JavaScript/TypeScript.

Documentation

API reference documentation is available here.

Usage

Try it out

const apiture = new ApitureClient({
  acessToken: 'my-access-token',
  apiKey: 'my-api-key', // optional
});

const account = await apiture.accounts.getAccount('accountId');

console.log(account.maskedNumber);

Handling errors

When the API returns a non-success status code (4xx or 5xx response), a subclass of ApitureError will be thrown:

try {
   await apiture.accounts.getAccount('accountId');
} catch (err) {
  if (err instanceof ApitureError) {
    console.log(err.statusCode);
    console.log(err.message);
    console.log(err.body);
  }
}

Beta status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version in your package.json file. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

FAQs

Package last updated on 24 May 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc