> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.aventure.vc/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.aventure.vc/_mcp/server.

# Get fundraise investor join

GET https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/{joinId}

Gets one entity or person investor join by join id.

Reference: https://docs.aventure.vc/api-reference/a-venture-api/entity-fundraise/get-fundraise-investor-join

## Authentication

- `X-Client-Secret` header (required) — Client secret for read-only service-to-service access (no writes)

## Request

### Path parameters

- `joinId` (string, required) — Fundraise investor join identifier

### Query parameters

- `id` (string, optional) — Owner-scoped resource UUID selector.
- `slug` (string, optional) — Owner-scoped resource slug selector.

## Response

### 200

OK

- `createdAt` (datetime, required) — Created timestamp
- `id` (string, required) — Fundraise investor join identifier
- `investor` (object, required) — Investor identity, nested: investor.entityId for a firm/fund investor or investor.personId for an angel — exactly one is set. Read responses carry ids only, never flat investor* fields or names; resolve display names with GET /v1/entities/detail or GET /v1/people/detail.
  - `entityId` (string, optional, nullable) — Canonical entity UUID
  - `personId` (string, optional, nullable) — Canonical person UUID
- `leadInvestor` (boolean, required) — Whether this investor is the lead investor for the round — the lead/anchor investor that set the round terms or made the primary commitment.
- `transactionId` (string, required) — Fundraise transaction identifier
- `updatedAt` (datetime, required) — Updated timestamp
- `amountInvested` (double, optional, nullable) — Investor-level attributed amount invested in the fundraise transaction currency. Serialized as a plain JSON number such as 220000 or 123456.78; no currency sign, currency code, comma grouping, or abbreviated amount text is valid.
- `financialInstrumentType` (enum, optional, nullable) — Financial instrument/vehicle for this investor's participation in the round (e.g. SAFE, Preferred Stock, Convertible Note). Distinct from the round-level financialInstrumentType: a single round can record different vehicles per investor join — e.g. an accelerator batch holding a capped SAFE and an uncapped-MFN SAFE as two joins.
  - Allowed values: `SAFE`, `Convertible Note`, `Preferred Stock`, `Common Stock`, `Other Equity`, `Bond`, `Loan`, `Other Debt`, `Grant`, `Token`

## Examples

**Response**

```json
{
  "createdAt": "2024-01-15T09:30:00Z",
  "id": "string",
  "investor": {
    "entityId": "string",
    "personId": "string"
  },
  "leadInvestor": true,
  "transactionId": "string",
  "updatedAt": "2024-01-15T09:30:00Z",
  "amountInvested": 1.1,
  "financialInstrumentType": "SAFE"
}
```

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId"

querystring = {"id":"04e2bf9c-a100-72ad-83ff-ba69c647b30b","slug":"acme-corp"}

headers = {"X-Client-Secret": "<apiKey>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript
const url = 'https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp';
const options = {method: 'GET', headers: {'X-Client-Secret': '<apiKey>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("X-Client-Secret", "<apiKey>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Client-Secret"] = '<apiKey>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp")
  .header("X-Client-Secret", "<apiKey>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp', [
  'headers' => [
    'X-Client-Secret' => '<apiKey>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp");
var request = new RestRequest(Method.GET);
request.AddHeader("X-Client-Secret", "<apiKey>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["X-Client-Secret": "<apiKey>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.aventure.vc/v1/entities/detail/fundraise-investor-joins/joinId?id=04e2bf9c-a100-72ad-83ff-ba69c647b30b&slug=acme-corp")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```