Data Models
Reference for the data structures returned by the Fundz feed endpoints. The list endpoints (/fundings, /acquisitions, /crowdfundings, /executives, /agreements, /products) all return the same envelope, wrapping records serialized by each resource's model.
Response Envelope
Every feed endpoint returns a JSON object with data (the array of records, serialized by that resource's model), meta (pagination + plan info), and an upgrade_url.
{
"data": [ /* array of records, serialized by that resource's Blueprint */ ],
"meta": {
"current_page": 1,
"next_page": 2,
"total_count": 1234,
"total_pages": 50,
"tier": "Pro",
"remaining_searches": 97
},
"upgrade_url": "https://www.fundz.net/pricing"
}When a query returns nothing, the response also includes a guidance object with a message and suggestions, and that query does NOT count against your limit.
Meta (Pagination & Plan)
Use ?page=2 to paginate. Page size is 25 records. Query limits vary by plan; meta.remaining_searches shows what's left and meta.tier shows your plan.
Organization
The company associated with an event. These base fields appear on the organization object across every feed.
The /fundings feed serializes its company with an enriched view that adds these fields on top of the base set:
"organization": {
"id": "onelayer",
"name": "OneLayer",
"number_of_employees": 45,
"is_public_company": false,
"status_label": "Private",
"status_code": "private",
"ticker": null,
"list_badges": [],
"location": {
"title": "Boston",
"country": "United States"
},
"industries": [
{ "title": "Network Security" }
],
"founded": "2021",
"description": "OneLayer secures private cellular networks.",
"linkedin_url": "https://www.linkedin.com/company/onelayer",
"domain": {
"name": "onelayer.com",
"url": "https://onelayer.com",
"website": "https://onelayer.com",
"logo": "https://www.google.com/s2/favicons?domain=onelayer.com&sz=128",
"description": "Securing private cellular networks"
}
}Location
Domain
The company's website and brand basics, nested under organization.domain.
Investor
An investor in a funding round. Returned in the investors array on each funding.
Industry
Event Models
Each endpoint returns events with these endpoint-specific fields, plus the shared organization object above.
Funding Round
GET/fundingsAcquisition
GET/acquisitionsExecutive Move
GET/executivesEach related_contacts entry carries:
id and titleAgreement / Contract
GET/agreementsProduct Launch
GET/productsCrowdfunding
GET/crowdfundingsCommon Query Parameters
Accepted by the feed endpoints. Omit ones that don't apply to a given resource.
Authentication
Send your key in the Authorization header against the base URL https://api.fundz.net. The API is paid plans only — there is no free API tier; an inactive subscription returns 401 pointing to fundz.net/pricing.
curl -H "Authorization: YOUR_API_KEY" "https://api.fundz.net/fundings"Find your API key in your account settings at app.fundz.net. (The API also accepts an OAuth Bearer <token> for ChatGPT/agent integrations.) See the Authentication reference for details.