Skip to content

Short-io/client-node

Repository files navigation

Short.io Node.js SDK

The Short.io Node.js official SDK client is a library that allows you to integrate short.io URL shortening and link management API with your Node.js application in an easy and elegant way.

API reference

See the API docs for more information.

Installing

To install this package, type:

npm i @short.io/client-node

Getting Started

First you need to get your API key from the Short.io dashboard in the Integrations & API section. This SDK contains methods for working with links, domains and statistics. Import the Shortio class:

import { Shortio } from "shortio";

Usage

Then create an instance of the Shortio class, and pass your API key as the first parameter:

const shortio = new Shortio("YOUR_API_KEY");

To get the domain list, you can use the following code:

const domains = await shortio.domain.list();

Get the link list of the first domain above:

const links = await shortio.link.list(domains[0].id);

Get the link statistics of the first link above:

const stats = await shortio.statistics.getByLink(links[0].idString);

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •