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

@flipagent/sdk

v1.2.0

Published

Official SDK for api.flipagent.dev — the unified reseller API. Typed namespaces for marketplace data (items, categories, products, media), my-side writes (listings, locations, purchases, bids, sales, forwarder), money + comms (payouts, transactions, messa

Readme

@flipagent/sdk

Typed TypeScript client for api.flipagent.dev — ONE unified surface for the full reseller cycle (search → evaluation → buying → listing → fulfillment → finance) across marketplaces.

npm install @flipagent/sdk
import { createFlipagentClient } from "@flipagent/sdk";

const client = createFlipagentClient({ apiKey: process.env.FLIPAGENT_API_KEY! });

// Search active listings
const { items } = await client.items.search({ q: "canon ef 50mm 1.8", limit: 50 });

// Search sold listings (last 90 days)
const { items: sold } = await client.items.search({ q: "canon ef 50mm 1.8", status: "sold", limit: 50 });

// Score one listing — composite (server fetches detail + sold + active)
const { evaluation, sold, active } = await client.evaluate.listing({ itemId: "v1|123456789|0" });

// Estimate landed cost via a forwarder
const quote = await client.ship.quote({ item: items[0], forwarder: { destState: "NY", weightG: 500 } });

Namespaces

| Group | Namespaces | |---|---| | Marketplace data | items, categories, products, media | | My side (write) | listings, locations, purchases, bids, sales, forwarder | | Money + comms | payouts, transactions, messages, feedback, offers, disputes | | flipagent intelligence | evaluate, ship | | Account + ops | me, seller, keys, billing, connect, policies, recommendations, analytics, labels, notifications, webhooks, capabilities, browser | | Agent (preview) | agent | | Escape hatch | client.http.{get,post,put,delete,patch}(path, body?) |

Sell-side namespaces (listings, sales, payouts, transactions, policies, seller, messages, feedback, offers, disputes) need the user to authorize their eBay account first via /v1/connect/ebay. Surfaces deferred from V1 (expenses, trends, promotions, markdowns, ads, store, feeds, translate, charities, featured, listing-groups, listings/bulk, watching, violations, marketplaces) live as typed wrappers but are not surfaced on the client until promoted. Reach them through client.http if you need them sooner.

Get a key

Free tier: 1,000 credits one-time (lifetime grant, doesn't refill), no card. Sign up at flipagent.dev/signup.

Docs

Full reference at flipagent.dev/docs. Source on GitHub.

License

MIT