cURL
curl --request GET \ --url https://app.concretehq.com/api/v1/funds/{fundPublicId}/companies \ --header 'Authorization: Bearer <token>'
{ "items": [ { "publicId": "abc123def456", "name": "Acme", "primaryDomain": "acmecorp.com", "domains": [ "acmecorp.com", "acme.io", "oldcompanyname.com" ], "headline": "Revolutionary AI software platform for enterprise automation", "alternativeNames": [ "Acme Corp", "OldName Co" ], "linkedinSlug": "acme-corporation", "twitterSlug": "acmecorp", "crunchbaseSlug": "acme-corporation" } ], "nextPageToken": "next_page_token_here" }
Get all companies associated with a specific fund
API key authentication using Bearer token format
Fund public ID
Token for pagination to get next page
Number of results per page (default: 100, max: 100)
1 <= x <= 100
List of companies in the fund
Show child attributes
Unique nanoid for the company.
"abc123def456"
Name of the company used for display purposes.
1 - 255
"Acme"
Primary website domain of the company. Used as the main domain for email identification and company matching. Should be the most commonly used domain.
"acmecorp.com"
Array of all company domains including historical and alternative domains. Concrete also inspects emails from these domains.
[ "acmecorp.com", "acme.io", "oldcompanyname.com"]
Brief description of what the company does. Periodically auto-generated using company context.
256
"Revolutionary AI software platform for enterprise automation"
Array of alternative company names including abbreviations, former names, and commonly used variations.
100
["Acme Corp", "OldName Co"]
LinkedIn company page slug (the part after /company/ in LinkedIn URL). Used for social media integration and additional company context.
"acme-corporation"
Twitter/X handle without the @ symbol.
"acmecorp"
Crunchbase company profile slug (the part after /organization/ in Crunchbase URL).
Token for fetching next page
"next_page_token_here"