0.1.9 • Published 10 months ago

@actionbase/web-action-sdk v0.1.9

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

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.

0.1.8

10 months ago

0.1.7

11 months ago

0.1.9

10 months ago

0.1.6

11 months ago

0.1.5

11 months ago

0.1.4

11 months ago

0.1.3

11 months ago

0.1.2

11 months ago

0.1.1

11 months ago

0.1.0

11 months ago