Integrations

Pipedream

Connect Social Fetch to Pipedream workflows — polling profile updates, consolidated profile/post actions, and credit balance checks with your API key.

Add Social Fetch to Pipedream workflows and pull live social data without writing HTTP glue. Authenticate with your API key (sfk_…); each step returns the same { data, meta } envelope as the REST API.

The v1 integration ships one polling source and five consolidated actions that cover the most common workflow paths — profile lookups, post fetches, feed pagination, transcripts, and balance checks.

What you'll need

  • A Pipedream account.
  • A Social Fetch API key (starts with sfk_) — create one in your API Keys dashboard.
  • Credits for metered routes — see Credits & billing.

Connect your API key

  1. Open a workflow and add a Social Fetch step (search for Social Fetch in the step picker).
  2. When prompted, paste your full sfk_… key from API Keys.
  3. Pipedream validates the connection with GET /v1/whoami before saving.

The same credential is reused across every Social Fetch source and action in your account.

Components (v1)

TypeNamePurpose
SourceNew Profile UpdatePoll a profile on a schedule; emit when the payload changes
ActionGet ProfilePublic profile lookup by handle or URL
ActionGet PostPost, video, or tweet lookup from URL
ActionList Profile PostsRecent feed items with optional cursor pagination
ActionGet TranscriptVideo or post transcript from URL
ActionGet Credit BalanceCurrent API credit balance

Every action maps to the same routes documented in the API reference.

New Profile Update (source)

The polling source watches one profile and emits when Social Fetch returns a changed payload:

  1. Choose a Platform and provide a Handle (TikTok, Instagram, Twitter/X, Threads) or Profile URL (Facebook, LinkedIn).
  2. Pipedream polls on the default timer interval, fetches the profile, and compares the response to the last stored snapshot.
  3. When a diff is detected, the workflow receives the full API response plus a diff object showing what changed.

Use this for creator monitoring, follower-count alerts, or any workflow that should react to profile changes without polling the REST API yourself.

Platform coverage by action

Get Profile — TikTok, Instagram, Twitter/X, Threads (handle), Facebook and LinkedIn (profile URL).

Get Post — TikTok, Instagram, Twitter/X, Threads, Facebook, YouTube, LinkedIn (post URL).

List Profile Posts — TikTok (videos), Instagram (posts or reels), Twitter/X (tweets), Threads and Facebook (posts). Pass data.page.nextCursor from a previous response to fetch the next page.

Get Transcript — TikTok, Instagram, Facebook, YouTube (media URL).

Get Credit Balance — account-wide; no platform input required.

Credits

Each step consumes credits from your Social Fetch balance. The amount charged is returned in meta.creditsCharged on every response. See Credits & billing for metered routes and 402 handling.

Full API surface

Pipedream v1 intentionally covers high-traffic workflow paths. For every documented route — Reddit, Spotify, web scrape, and more — use the REST API, TypeScript SDK, n8n node, or Apify Store Actors for TikTok-only Apify-native runs.

Next steps

On this page