# kick-api

> Kick API Wrapper

Latest version **1.0.2** (published 2023-02-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install kick-api
pnpm add kick-api
yarn add kick-api
bun add kick-api
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2023-02-21 |
| First published | 2023-02-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Basil#6001 |
| Maintainers | basiluk |

## Links

- npm: https://www.npmjs.com/package/kick-api
- npm.io page: https://npm.io/package/kick-api

## Recent versions

- 1.0.2 (latest) — 2023-02-21
- 1.0.1 — 2023-02-21
- 1.0.0 — 2023-02-21

## README

# Kick API Node

Kick.com API Wrapper


## Lookup User

```javascript
const kickapi = require('kick-api')

async function lookup(username){
    let user = await kickapi.lookupUser(username)
    console.log(user)

    return user;
}

lookup("Zovo")
```

## Check Users Viewcount

```javascript
const kickapi = require('kick-api')

async function lookup(username){
    let user = await kickapi.viewCount(username)
    console.log(user)

    return user;
}

lookup("Zovo")
```

## Check Followcount

```javascript
const kickapi = require('kick-api')

async function lookup(username){
    let user = await kickapi.followCount(username)
    console.log(user)

    return user;
}

lookup("Zovo")
```


## Suggestions

If you have any suggestions, Join our discord @ discord.gg/kickalerts


## Authors

- [@basil](https://discord.gg/kickalerts)

---
_Source: https://npm.io/package/kick-api · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
