npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@human2human/sdk

v0.1.0

Published

api (1.0.0)

Downloads

71

Readme

Human 2 Human API - Typescript

api (1.0.0)

Getting Started

Example Client Initialization

import Client from "api_ts";

const client = new Client({
  apiKey: process.env["API_KEY"]!!,
  token: process.env["API_TOKEN"]!!,
});

Module Documentation and Snippets

agent.build.workflow

  • create - Build a workflow
  • list - Get the output of a workflow

auth.login

auth.refresh

chats

feeds

  • create - Create a new feed
  • get - Get a specific feed by ID
  • list - List all feeds

feeds.items

  • create - Create a new feed item for an API feed
  • get - Get a specific feed item by ID

feeds.vector.search

  • create - Run a query against feed embeddings

integrations.api

  • create - Create a new API integration
  • delete - Delete an API integration
  • get - Get an API integration by ID

integrations.api.operations

  • create - Create a new API operation
  • delete - Delete an API operation
  • get - Get an API operation by ID
  • patch - Update an API operation

integrations.api.secrets

  • create - Create a new API secret
  • delete - Delete an API secret
  • list - Get all API secrets for an API integration

searchGroups

  • create - Create a new dictionary
  • get - Get a search group by id
  • list - List search groups

searchGroups.items

  • create - Create a new search item in a search group
  • get - Get a search item by id
  • list - List search items in a search group

tools

  • list - Get all tools

tools.codeExecution

  • create - Execute code and return the result

tools.dictionarySearch

  • create - Search for dictionary definitions related to a feed item

tools.format

  • create - Format an input into HTML or Markdown

tools.internetSearch

tools.memoryQuery

  • create - Query the memory table

tools.metaTagger

tools.standardLlm

tools.structuredOutput

  • create - Structured output tool

workflow.run.trigger

  • create - Trigger a new workflow run

workflows.dispatch

  • create - Dispatch a new workflow run. This is an asynchronous call that will return the workflow run ID and allow you to poll for the result.

workflows.invoke

  • create - Invoke a new workflow run. This is a synchronous call that will wait for the workflow run to complete and return the result.