CONNECT APP
Build with Pubrio
The Glocalized Business Data Layer for AI and Revenue Teams
Artificial Intelligence (AI)
- API key
MCP
Give your agent Pubrio tools
Every Pubrio action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Pubrio account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "pubrio",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Batch Redeem Contacts:
const result = await mcp.callTool({
name: "pubrio-batch-redeem-contacts",
arguments: {
peoples: ["People"],
peopleContactTypes: ["Contact Types"],
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", # any stable ID for this user in your system
"x-pd-app-slug": "pubrio",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Batch Redeem Contacts:
result = await session.call_tool("pubrio-batch-redeem-contacts", {
"peoples": ["People"],
"peopleContactTypes": ["Contact Types"],
})API PROXY
Call the Pubrio API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Pubrio API with the connected user's credentials attached. You store no tokens and write no refresh logic.
const resp = await pd.proxy.get({
externalUserId: "{external_user_id}", // any stable ID for this user in your system
accountId: "apn_xxxxxxx",
url: "https://api.pubrio.com/timezones",
})
// Any allowed Pubrio endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.# The path segment is the target URL, URL-safe base64 encoded:
# https://api.pubrio.com/timezones
curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkucHVicmlvLmNvbS90aW1lem9uZXM?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: production"SDK
Run Pubrio actions from your backend
Connect a user's Pubrio account once, then run Batch Redeem Contacts on their behalf from your own code — TypeScript, Python, or plain HTTP.
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: "pubrio-batch-redeem-contacts",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
pubrio: { authProvisionId: "apn_xxxxxxx" },
peoples: ["People"],
peopleContactTypes: ["Contact Types"],
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="pubrio-batch-redeem-contacts",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"pubrio": {"authProvisionId": "apn_xxxxxxx"},
"peoples": ["People"],
"peopleContactTypes": ["Contact Types"],
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "pubrio-batch-redeem-contacts",
"configured_props": {
"pubrio": { "authProvisionId": "apn_xxxxxxx" },
"peoples": ["People"],
"peopleContactTypes": ["Contact Types"]
}
}'TOOLS
Pubrio actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Batch Redeem Contacts
actionBatch reveal contact information for multiple people (uses credits). See the documentationWritev0.0.1 -
Company LinkedIn Lookup
actionReal-time LinkedIn company lookup. See the documentationRead-onlyv0.0.1 -
Create Monitor
actionCreate a new signal monitor for jobs, news, or advertisements. See the documentationWritev0.0.2 -
Delete Monitor
actionDelete an existing signal monitor. See the documentationWritev0.0.1 -
Duplicate Monitor
actionDuplicate an existing signal monitor. See the documentationWritev0.0.1 -
Enrich Company
actionGet enriched company data with full firmographic details (uses credits). See the documentationWritev0.0.1 -
Enrich Person
actionGet enriched person data with full professional details (uses credits). See the documentationWritev0.0.1 -
Find Similar Companies
actionFind companies similar to a given company. See the documentationRead-onlyv0.0.1 -
Get Company Sizes
actionGet available company size codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Department Functions
actionGet available department function codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Departments
actionGet available department title codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Locations
actionGet available location codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Management Levels
actionGet available management level codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Monitor
actionGet detailed information about a specific monitor. See the documentationRead-onlyv0.0.1 -
Get Monitor Chart
actionGet chart data for a specific monitor over a date range. See the documentationRead-onlyv0.0.1 -
Get Monitor Log Detail
actionGet detailed information about a specific monitor log entry. See the documentationRead-onlyv0.0.1 -
Get Monitor Logs
actionGet logs for a specific monitor. See the documentationRead-onlyv0.0.1 -
Get Monitor Statistics
actionGet overall monitor statistics. See the documentationRead-onlyv0.0.1 -
Get News Categories
actionGet available news category codes for filtering. See the documentationRead-onlyv0.0.1 -
Get News Galleries
actionGet available news gallery codes for filtering. See the documentationRead-onlyv0.0.1 -
Get News Languages
actionGet available news language codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Profile
actionGet your Pubrio account profile information. See the documentationRead-onlyv0.0.1 -
Get Timezones
actionGet available timezone codes for filtering. See the documentationRead-onlyv0.0.1 -
Get Usage
actionGet your Pubrio account usage statistics. See the documentationRead-onlyv0.0.1 -
List Monitors
actionList all signal monitors. See the documentationRead-onlyv0.0.1 -
Lookup Advertisement
actionLook up detailed advertisement information by advertisement search ID. See the documentationRead-onlyv0.0.1 -
Lookup Company
actionLook up detailed company information by domain or LinkedIn URL. See the documentationRead-onlyv0.0.1 -
Lookup Job
actionLook up detailed job posting information by job search ID. See the documentationRead-onlyv0.0.1 -
Lookup Lookalike
actionLook up similar companies (lookalike) result by domain, LinkedIn URL, domain search ID, or domain ID. See the documentationRead-onlyv0.0.1 -
Lookup News
actionLook up detailed news article information by news search ID. See the documentationRead-onlyv0.0.1 -
Lookup Person
actionLook up a person's professional profile by LinkedIn URL or Pubrio ID. See the documentationRead-onlyv0.0.1 -
Lookup Technology
actionLook up technologies used by a company. See the documentationRead-onlyv0.0.1 -
People LinkedIn Lookup
actionReal-time LinkedIn person lookup. See the documentationRead-onlyv0.0.1 -
Query Batch Redeem
actionQuery the status and results of a batch redeem request. See the documentationRead-onlyv0.0.1 -
Retry Monitor
actionRetry a failed monitor process. See the documentationWritev0.0.1 -
Reveal Contact
actionReveal email or phone number for a person (uses credits). See the documentationWritev0.0.2 -
Reveal Monitor Signature
actionReveal the signature for a specific monitor. See the documentationWritev0.0.1 -
Search Advertisements
actionSearch advertisements across companies. See the documentationRead-onlyv0.0.1 -
Search Companies
actionSearch B2B companies by name, domain, location, industry, technology, or headcount. See the documentationRead-onlyv0.0.1 -
Search Jobs
actionSearch job postings across companies. See the documentationRead-onlyv0.0.1 -
Search News
actionSearch company news and press releases. See the documentationRead-onlyv0.0.1 -
Search People
actionSearch business professionals by name, title, department, seniority, or company. See the documentationRead-onlyv0.0.1 -
Search Technologies
actionSearch available technologies by keyword. See the documentationRead-onlyv0.0.1 -
Search Technology Categories
actionSearch available technology categories by keyword. See the documentationRead-onlyv0.0.1 -
Search Vertical Categories
actionSearch available vertical categories by keyword. See the documentationRead-onlyv0.0.1 -
Search Vertical Sub-Categories
actionSearch available vertical sub-categories by keyword. See the documentationRead-onlyv0.0.1 -
Search Verticals
actionSearch available industry verticals by keyword. See the documentationRead-onlyv0.0.1 -
Test Run Monitor
actionPerform a test run of a signal monitor. See the documentationWritev0.0.1 -
Update Monitor
actionUpdate an existing signal monitor. See the documentationWritev0.0.1 -
Validate Webhook
actionValidate a webhook URL for use with monitors. See the documentationRead-onlyv0.0.1
- App slug
- pubrio
- Authentication
- API key
- Categories
- Artificial Intelligence (AI)
- Actions
- 50
- Triggers
- 1
- API proxy
- Available