View as Markdown
Zenscrape icon

Zenscrape ACTION

Get Website Content

Retrieve the content of a website. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zenscrape account once, then configure and run Get Website Content from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zenscrape-get-website-content",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zenscrape: { authProvisionId: "apn_xxxxxxx" },
    url: "URL",
    premium: true,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Get Website Content inputs
Property Type Description
url URL string
The target site you want to scrape
Required
premium Premium boolean
Uses residential proxies, unlocks sites that are hard to scrape. Counts as 20 credits towards your quota.
Optional
location Location string
If premium=false possible locations are 'na' (North America) and 'eu' (Europe). If premium=true you can choose a location from Zenscrape's list of 230+ countries
Optional
keepHeaders Keep Headers boolean
Allow to pass through forward headers (e.g. user agents, cookies)
Optional
render Render boolean
Use a headless browser to fetch content that relies on javascript. Counts as 5 credits towards your quota.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
zenscrape-get-website-content
Version
0.0.2
App
Zenscrape
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes