For Agents
Subscribe to Networx home-services lead webhooks and validate credentials so an agent receives new leads in real time without polling.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Networx Public API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Networx Public API API.
Subscribe a webhook URL to receive new home-services lead notifications from the Networx marketplace
Unsubscribe an existing webhook subscription by its subscription identifier
Validate Networx Basic Auth credentials before establishing a webhook subscription
Pull example lead payload data through the test trigger endpoint to develop and verify webhook handlers
GET STARTED
Use for: I need to subscribe a webhook to receive Networx leads, Set up a webhook subscription for new home services leads, Verify my Networx Basic Auth credentials are valid, Retrieve a sample Networx lead payload for testing
Not supported: Does not handle lead scoring, contractor billing, or marketplace bidding — use for webhook-based lead delivery integration only.
Jentic publishes the only available OpenAPI document for Networx Public API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Networx Public API, keeping it validated and agent-ready. The Networx Public API exposes a small set of webhook-oriented endpoints for integrating with the Networx home services lead marketplace. It supports validating credentials, subscribing webhooks for incoming lead events, unsubscribing, and pulling example test data for development. The API is scoped specifically to lead delivery integrations rather than full CRM or marketplace management.
Authenticate every request using HTTP Basic Auth with a Networx-issued username and password pair
Patterns agents use Networx Public API API for, with concrete tasks.
★ Real-Time Home Services Lead Routing
Contractors and lead-management platforms subscribe to Networx webhook events so new home-improvement leads are pushed into their CRM or dispatch system the moment a homeowner submits a request. The integration uses POST /public/subscription to register a callback URL secured with Basic Auth, eliminating polling and reducing speed-to-lead from minutes to seconds.
Call POST /public/subscription with the contractor's CRM webhook URL and Basic Auth credentials, then confirm receipt by triggering GET /public/test_trigger and verifying the test payload arrived.
Integration Credential Validation
Before going live, integrators verify that the Basic Auth credentials issued by Networx are accepted using GET /public/validate. This catches misconfigured environment variables and rotated passwords during deployment rather than failing silently when real leads arrive.
Send GET /public/validate with the configured Basic Auth header and surface a clear error if the response status is not 200 so the deployment pipeline can block release.
Sandbox Webhook Development
Developers building a new Networx integration call GET /public/test_trigger to receive a representative lead payload without waiting for real homeowner traffic. This lets them shape database schemas, build CRM mapping logic, and exercise error handling against realistic data before turning on the production subscription.
Invoke GET /public/test_trigger, parse the returned lead JSON, and seed a local database table so downstream CRM mapping logic can be unit tested.
AI Agent Lead Distribution
An AI agent operating a contractor's intake workflow uses Jentic to discover the Networx subscribe operation, register a webhook tied to the agent's own ingestion endpoint, and then triage each incoming lead automatically — qualifying, scoring, and assigning to the correct technician without human intervention.
Use Jentic to search 'subscribe to home services leads', load the Networx subscribe schema, execute POST /public/subscription with the agent's ingestion URL, then route each subsequent webhook payload to the qualification workflow.
4 endpoints — jentic publishes the only available openapi specification for networx public api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/public/validate
Validate Basic Auth credentials
/public/subscription
Subscribe a new webhook for lead events
/public/subscription/{subscription_id}
Unsubscribe an existing webhook
/public/test_trigger
Retrieve example lead data for testing
/public/validate
Validate Basic Auth credentials
/public/subscription
Subscribe a new webhook for lead events
/public/subscription/{subscription_id}
Unsubscribe an existing webhook
/public/test_trigger
Retrieve example lead data for testing
Three things that make agents converge on Jentic-routed access.
Credential isolation
Networx Basic Auth username and password pairs are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — the raw credentials never enter the agent's context.
Intent-based discovery
Agents search by intent (e.g., 'subscribe to home services leads') and Jentic returns the Networx subscribe operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Networx integration: 1-2 days for credential setup, webhook handling, and testing. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
HubSpot Marketing Events
HubSpot CRM that consumes Networx leads downstream
Choose HubSpot when leads from Networx need to flow into a full CRM with contact records, deal pipelines, and marketing automation.
Pipedrive API
Sales CRM that can ingest Networx webhook lead payloads
Choose Pipedrive when the contractor uses Pipedrive for deal tracking and the Networx lead should become a new deal in a pipeline.
Zapier Natural Language Actions
Generic webhook router as an alternative to direct Networx integration
Choose Zapier when an agent needs to fan Networx leads out to many tools without writing per-tool integrations.
Specific to using Networx Public API API through Jentic.
Why is there no official OpenAPI spec for Networx Public API?
Networx does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Networx Public API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Networx Public API use?
The Networx Public API uses HTTP Basic Auth — a username and password pair sent base64-encoded in the Authorization header. Through Jentic, these credentials are stored in the encrypted MAXsystem vault and never enter the agent's context window.
Can I subscribe to home-services leads with the Networx Public API?
Yes. Call POST /public/subscription with a callback URL and Networx pushes new lead payloads to that URL as homeowners submit requests. Use DELETE /public/subscription/{subscription_id} to remove the subscription when no longer needed.
What are the rate limits for the Networx Public API?
Networx does not document explicit numeric rate limits in the spec. Because the API is webhook-driven rather than polled, normal usage involves only one subscribe call per integration plus occasional credential validation, so limits rarely apply.
How do I test a Networx webhook integration through Jentic?
Use Jentic to search 'get networx test lead', load the GET /public/test_trigger schema, and execute it. The endpoint returns a representative lead payload you can use to develop and verify your webhook handler before subscribing in production.
Is the Networx Public API free?
Access to the Networx Public API requires an active Networx contractor or partner account — credentials are issued by Networx as part of the commercial relationship, not self-served.