@actionbase/web-action-sdk
TypeScript icon, indicating that this package has built-in type declarations

0.1.9 • Public • Published

Web Action SDK

The Web Action SDK by Actionbase is a powerful tool for interacting with various web platforms programmatically. It allows you to automate tasks, retrieve information, and perform actions on popular websites as if you were using them directly through a browser.

Installation

Install the SDK using your package manager of choice:

pnpm i @actionbase/web-action-sdk

Usage

Generate an API key at app.actionbase.co.

import { Sdk } from "@actionbase/web-action-sdk";
import "dotenv/config";

const sdk = new Sdk(process.env.ACTIONBASE_API_KEY!);

You can then use the SDK to interact with supported platforms:

// Example: Send a LinkedIn connection request
const results = await sdk.linkedin.sendConnectionRequest({
  to: "John Doe",
  note: "Hello from the Web Action SDK!"
});

// Example: Send a LinkedIn message
const results = await sdk.linkedin.sendMessage({
  to: "John Doe",
  message: "Hi John, this is a test of the Actionbase Web Action SDK! 👋"
});

Supported Platforms

  • LinkedIn
  • Amazon (Coming Soon)
  • Uber (Coming Soon)
  • Resy (Coming Soon)

Features

  • Multi-platform support
  • Easy integration with Node.js and TypeScript projects
  • Type safety for enhanced developer experience
  • Flexible API for various actions across platforms

Documentation

For detailed information on available actions, parameters, and usage examples, please refer to our official documentation.

Support

If you encounter any issues or want to see something new, please let us know!

Made with ❤️ by Actionbase.

Package Sidebar

Install

npm i @actionbase/web-action-sdk

Weekly Downloads

22

Version

0.1.9

License

ISC

Unpacked Size

267 kB

Total Files

8

Last publish

Collaborators

  • samactionbase
  • ajmcquilkin