Work with the internet as if
it were your own API.
Announcing the Web Action SDK by Actionbase. Programatically interact with top
sites without worrying about brittle or complex automation scripts.
actionbase.co
import { Sdk } from "@actionbase/web-action-sdk";
const sdk = new Sdk(KEY);
await sdk.linkedin.messages.send("Actionbase", "Dinner at 5:00?");
Message sent successfully.
await sdk.amazon.purchasing.buyProductNow("Moleskine Notebook");
Order placed successfully.
const result = await sdk.resy.restaurant.search("Señor Sisig")[0];
Restaurant found.
await sdk.resy.restaurant.reserve(result.id, 2, "2024-08-30T17:00:00");
Reservation confirmed.
const availability = await sdk.uber.rides.checkAvailability(
"Dogpatch", "Señor Sisig", "2024-08-30T17:00:00"
);
Ride available. Estimated arrival time: 15 minutes.
const sdk = new Sdk(KEY);
await sdk.linkedin.messages.send("Actionbase", "Dinner at 5:00?");
Message sent successfully.
await sdk.amazon.purchasing.buyProductNow("Moleskine Notebook");
Order placed successfully.
const result = await sdk.resy.restaurant.search("Señor Sisig")[0];
Restaurant found.
await sdk.resy.restaurant.reserve(result.id, 2, "2024-08-30T17:00:00");
Reservation confirmed.
const availability = await sdk.uber.rides.checkAvailability(
"Dogpatch", "Señor Sisig", "2024-08-30T17:00:00"
);
Ride available. Estimated arrival time: 15 minutes.