DocsAPIShareholding

List shareadjustments

Returns a paginated list of cap table events outside of funding rounds – share count updates, splits and shares issued to a fund – most recent first. Filtering by portfolio_company_id also returns the company-level records that holding inherits.

GET
/shareholding
Query Params

Only return records affecting this portfolio company – its own share issues plus the company-level records it inherits

Example: 10

Only return company-level records for this company

Example: 42

Only return records of this type

Example: share_split

Maximum number of results (1-1000, default: 500)

Example: 500

Number of results to skip (default: 0)

Example: 0

Credentials

Bearer
curl -X GET "https://api.fundra.com/v1/shareholding?portfolio_company_id=10&company_id=42&type=share_split" \
  -H "Authorization: Bearer <token>"

Successfully retrieved shareholding records

{
  "data": [
    {
      "id": "12",
      "uuid": "V1StGXR8",
      "portfolio_company_id": "10",
      "company_id": "42",
      "date": "2024-03-31",
      "type": "share_adjustment",
      "shares_outstanding": 1190476,
      "esop": 100000,
      "split_ratio_from": 1,
      "split_ratio_to": 10,
      "shares_issued_to_fund": 5000,
      "shares_issued": 20000,
      "split_override": false,
      "description": "10-for-1 split ahead of the Series B",
      "fields": {
        "property1": null,
        "property2": null
      },
      "created_at": "2024-04-02T10:30:00Z",
      "updated_at": "2024-04-05T09:00:00Z"
    }
  ],
  "pagination": {
    "total": 8,
    "limit": 500,
    "offset": 0
  }
}