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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sociate/sociate-api-sdk

v1.0.1

Published

Javascript client for Sociate AI APIs

Downloads

623

Readme

Sociate API JavaScript SDK

Welcome to the official JavaScript SDK for the Sociate API! This SDK allows developers to easily integrate Sociate's powerful features into their JavaScript projects, providing seamless access to various functionalities offered by the Sociate platform. It supports TypeScript for strong typing and enhanced developer experience.

Features

  • Comprehensive API Coverage: Access all endpoints available in the Sociate API.
  • Type Safety: Provides strong type definitions for all requests and responses.
  • Easy Integration: Simplifies the process of making API requests with minimal configuration.
  • Promise-based: Fully supports async/await and promises for easy asynchronous operations.

Installation

Install the SDK using npm or yarn:

bash npm install @sociate/sociate-api-sdk

or

bash yarn add @sociate/sociate-api-sdk

Usage

Importing the Client

import { SociateClient, SociateConfig } from '@sociate/sociate-api-sdk';

Initialization

Initialize the SociateClient with the base URL of the API and an optional authentication token:

const config: SociateConfig = {
  basePath: 'https://api.sociate.ai',
  token: 'your-auth-token'
};

const client = new SociateClient(config);

Authentication

Login:

const credentials = { username: '[email protected]', password: 'password123' };
const authResponse = await client.auth.login(credentials);
client.setToken(authResponse.access_token); // Set token for future requests

Product Management

Create Products:

const productData = {
  products: [
    {
      id: '1',
      title: 'Product 1',
      price: 100,
      brand: 'BrandName',
      image_url: 'http://example.com/image1.png',
      url: 'http://example.com/product1',
      price_currency: 'USD'
    }
  ]
};

const createResponse = await client.products.create(productData);
console.log(createResponse);

Upload Products:

const product = { file: yourFile };
const uploadResponse = await client.products.upload(product);
console.log(uploadResponse);

Delete Products:

const deleteData = { products: ['1', '2'] };
const deleteResponse = await client.products.delete(deleteData);
console.log(deleteResponse);

Search

Basic Search:

const searchParams = { text: 't-shirt' };
const searchResults = await client.search.basic(searchParams);
console.log(searchResults);

Advanced Search:

const advancedSearchParams = { 
  text_include: 'red', 
  text_exclude: 'blue', 
  filters: { availability: 'available' } 
};
const advancedResults = await client.search.advanced(advancedSearchParams);
console.log(advancedResults);

User Profile

Get Current User:

const userInfo = await client.users.me();
console.log(userInfo);

Token Management

You can set or clear the authentication token at any time:

client.setToken('new-token');
client.clearToken();

API Documentation

For detailed API documentation and endpoint descriptions, visit the Sociate API Documentation.