Documentation Index
Fetch the complete documentation index at: https://pipedream.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Pipedream provides access to + APIs. Use the SDK or REST API to search and list available apps and integrations.
Discovering apps
Search for available apps
import { PipedreamClient } from "@pipedream/sdk";
// Initialize the Pipedream SDK client
const client = new PipedreamClient({
projectEnvironment: PIPEDREAM_ENVIRONMENT,
clientId: PIPEDREAM_CLIENT_ID,
clientSecret: PIPEDREAM_CLIENT_SECRET,
projectId: PIPEDREAM_PROJECT_ID
});
// Search for Google Sheets apps, sorted by featured weight
const apps = await client.apps.list({
q: "google sheets",
sortKey: "featured_weight",
sortDirection: "desc"
});