View as Markdown
RocketSkip icon

RocketSkip ACTION

Skip Trace Property

Send a property to get phone numbers for the property owner. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's RocketSkip account once, then configure and run Skip Trace Property 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: "rocketskip-skip-trace-property",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    rocketskip: { authProvisionId: "apn_xxxxxxx" },
    streetAddress: "Street Address",
    city: "City",
  },
})

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.

Skip Trace Property inputs
Property Type Description
streetAddress Street Address string
Street address of the property, i.e.: 44 Montgomery St
Required
city City string
City of the property, i.e.: San Francisco
Required
state State string
State of the property, i.e.: CA
Required
zipCode Zip Code string
Postal code of the property, i.e.: 94108
Required
firstName First Name string
First name of the property owner
Optional
lastName Last Name string
Last name of the property owner
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
rocketskip-skip-trace-property
Version
0.0.2
App
RocketSkip
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes