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

@antavo/api-client-node

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@antavo/api-client-node

Antavo API Client helps you send secure HTTP requests (for APIs).

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
40
increased by150%
Maintainers
1
Weekly downloads
 
Created
Source

Antavo API Client

Antavo API Client helps you send secure HTTP requests (for APIs).

Usage

  1. Get the Client class in order to initialize it later:

    var Client = require("@antavo/api-client-node").Client
    
  2. Create a new client object like:

    var client = new Client(ENVIRONMENT, API_KEY, API_SECRET)
    

Requests

  • GET

    var response = client.get(URI).getBody('utf8')
    
  • POST

    var response = client.post(URI, DATA_OBJECT).getBody('utf8')
    

Responses

KeyTypeDescription
statusCodeIntegerHTTP status code of the request
headersObject<String, mixed>HTTP response headers
bodyBufferResponse body in raw format. Convert it through getBody('utf8').
urlStringRequest URL

FAQs

Package last updated on 07 Jun 2021

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