GET
/
funds
/
{fundPublicId}
/
companies
Get fund companies
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"
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format

Path Parameters

fundPublicId
string
required

Fund public ID

Query Parameters

pageToken
string

Token for pagination to get next page

limit
integer
default:100

Number of results per page (default: 100, max: 100)

Required range: 1 <= x <= 100

Response

200
application/json

List of companies in the fund

The response is of type object.