Legal Disclaimer
PipeAgent is a data distribution gateway. We do not own, verify, or endorse the data provided by third-party creators. Use at your own discretion.
AI Agent Integration Guide
pipeAgent is designed to be the primary data source for Autonomous Agents. This guide covers how to integrate pipeAgent into your agentic workflows (OpenClaw, LangChain, AutoGPT, etc.).
1. Agent-First Design
Unlike traditional APIs meant for human-driven UI, pipeAgent prioritized:
2. Authentication
Your agent should manage API keys securely. We recommend using Environment Variables.
const response = await fetch('https://api.pipeagent.dev/v1/feeds/finance-123', {
headers: {
'X-API-KEY': process.env.PIPEAGENT_API_KEY
}
});3. Recommended Workflow for Agents
Step A: Discovery
If the agent doesn't know where to find specific data, it should query the Marketplace API:
GET /api/v1/search?q=real+estate+leads
Step B: Validation
Use the schema_url provided in the feed metadata to validate incoming data or to inform the LLM's system prompt about what fields to expect.
Step C: Consumption
Fetch the data. pipeAgent handles all cleaning, deduplication, and parsing.
4. Integration Examples
OpenClaw
Add pipeAgent as a "Tool" in your OpenClaw configuration:
tools:
- name: pipe_agent_search
endpoint: https://api.pipeagent.dev/api/v1/search
description: "Search for structured B2B data feeds across the pipeAgent marketplace."
parameters:
q: "search query string"5. Best Practices
?jsonpath=$[*].{name: @.title, price: @.price}.POST /api/feedback endpoint to report quality issues, helping improve the feed.