Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Fundz 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.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ffundz.net%2Ffundz" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Ffundz.net%2Ffundz" | 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 Fundz API.
List recent funding rounds with the company, amount, and round details
Retrieve crowdfunding campaigns and their reported figures
Track company acquisitions with acquirer, target, and date
Find newly announced executive appointments across companies
List business agreements and partnerships between companies
GET STARTED
Retrieve recent product launches reported by companies
Patterns agents use Fundz API for, with concrete tasks.
★ AI Agent for Sales and Deal Signals
A sales or research agent watches for buying signals like fresh funding, new executives, or acquisitions. Through Jentic it lists recent Fundz funding rounds and executive appointments, filters to the target market, and surfaces accounts worth reaching out to. The agent discovers the list operations by intent, so it delivers timely deal signals without a developer wiring HTTP calls or scraping filings.
List funding rounds and executive appointments from the last week, filter to a target industry, and return companies to prioritize for outreach
Private-Market Deal Tracking
An investor or analyst tracks acquisitions and raises in a sector. The workflow lists Fundz acquisitions and funding rounds on a schedule, stores the companies and amounts, and builds a running feed of deal activity. Because each record carries dates and parties, the feed stays clean without manual research across filings.
List acquisitions and funding rounds for a sector on a schedule and append the acquirer, target, amount, and date to a deal tracker
Enriching a CRM with Company Events
A revenue team wants their CRM records to reflect real-world company events. A pipeline lists Fundz funding, acquisition, and agreement events, matches them to accounts already in the CRM, and writes back the latest activity. This keeps account owners aware of changes without them monitoring news themselves.
List recent funding and agreement events, match each to an existing CRM account by company name, and attach the event as an activity note
6 endpoints — the fundz api delivers structured private-market events collected from sec filings, state registries, and company disclosures.
METHOD
PATH
DESCRIPTION
/fundings
List funding rounds
/crowdfundings
List crowdfunding campaigns
/acquisitions
List company acquisitions
/executives
List executive appointments
/agreements
List business agreements and partnerships
/products
List reported product launches
/fundings
List funding rounds
/crowdfundings
List crowdfunding campaigns
/acquisitions
List company acquisitions
/executives
List executive appointments
/agreements
List business agreements and partnerships
/products
List reported product launches
What agents get from Jentic-routed access to this vendor.
Setup
Using the Fundz API by hand means sending the key as a raw Authorization header with no Bearer prefix, learning which endpoint holds each event type, and paging through filtered lists yourself. Through Jentic you install once, import the API from the Directory, and your agent lists the right events.
Permission scoping
The Fundz API is read-only, so you allow only the event endpoints a task needs, such as GET /fundings, and leave the rest out of the allowed set. Rules run on your own instance and every call the agent makes is logged.
Credential isolation
Your Fundz API key is stored once, encrypted, by your own Jentic One instance and injected into the Authorization header at execution time, so it never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list recent funding rounds' or 'find new acquisitions', and Jentic returns the matching Fundz operation with its input schema so the agent calls the right endpoint without reading reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Fundz API through Jentic.
What authentication does the Fundz API use?
Per its OpenAPI spec it uses an API key sent as the raw value of the Authorization header, with no Bearer prefix. Requests without a valid key are rejected. Through Jentic that key is stored encrypted on your own instance and injected into the Authorization header at call time, so it never appears in the agent's prompt or logs.
What kinds of events does the Fundz API return?
It exposes six event types, each on its own list endpoint: funding rounds at GET /fundings, crowdfunding at GET /crowdfundings, acquisitions at GET /acquisitions, executive appointments at GET /executives, business agreements at GET /agreements, and product launches at GET /products. Each record carries the companies, people, amounts, and dates involved.
Where does the Fundz API get its data?
According to its documentation the data is collected from SEC filings, state registries, and company disclosures. That means an agent can track private-market activity from primary sources without scraping filings or news itself.
What are the rate limits for the Fundz API?
The OpenAPI spec does not define fixed numeric rate limits; usage is governed by your plan, and each successful response reports your remaining quota and tier in its meta block. Check https://www.fundz.net for current plan details.
How do I find recent funding rounds with the Fundz API through Jentic?
Search Jentic for an intent like 'list recent funding rounds' and it returns the GET /fundings operation with its input schema. Apply the available filters to narrow by company or time window, and the agent reads the matching rounds directly.
Can I limit what my agent is allowed to do with the Fundz API through Jentic?
Yes. The API is read-only, so you allow only the event endpoints a task needs, such as GET /fundings and GET /acquisitions, and leave the others out of the allowed set. Every call runs through your own instance and is logged, so the agent's access stays under your control.
Is there a Fundz MCP server?
You don't need a separate MCP server to give your agent the Fundz API. Jentic connects it directly from the API Directory: import the API and your agent lists funding, acquisition, and executive events on demand without loading another server's tool definitions into its context.
For Agents
List structured private-market events from Fundz: funding rounds, crowdfunding, acquisitions, executive appointments, business agreements, and product launches, with filtering.
Use for: List the latest funding rounds this week, Find recent acquisitions in a given industry, Show me new executive appointments at these companies, Retrieve crowdfunding campaigns for a company
Not supported: Covers reading private-market event lists: fundings, crowdfundings, acquisitions, executives, agreements, and products. It does not provide full company profiles, investor portfolios, or write access to the data.
The Fundz API delivers structured private-market events collected from SEC filings, state registries, and company disclosures. Each endpoint lists one event type: funding rounds, crowdfunding campaigns, acquisitions, executive appointments, business agreements, and product launches. Records carry the companies, people, amounts, and dates involved, so you can track when a company raises money, gets acquired, hires a new executive, signs a partnership, or ships a product. Every list endpoint supports filtering so you can pull recent events or narrow to specific companies and time windows.