> 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 person investor activity

GET https://api.aventure.vc/v1/people/detail/investor-activity

Gets the investor-perspective activity aggregate (total investments, distinct portfolio companies, current portfolio count, exits, USD-attributed money totals, and top investment stages) for a person investor by id or slug. Use --id or --slug for the individual who supplied the capital — an angel or individual investor, not the company that raised the round.

Reference: https://docs.aventure.vc/api-reference/a-venture-api/person-investments/get-person-investor-activity

## Authentication

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

## Request

### Query parameters

- `id` (string, optional) — Person unique identifier (UUID)
- `slug` (string, optional) — Person URL-friendly identifier (slug)

## Examples

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/people/detail/investor-activity"

querystring = {"id":"01993139-fc26-768a-bdf3-c8396c184be7","slug":"stacey-bishop-san-mateo-ca-usa"}

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

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

print(response.json())
```

```javascript
const url = 'https://api.aventure.vc/v1/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa';
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/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa"

	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/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa")

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/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa")
  .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/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa', [
  'headers' => [
    'X-Client-Secret' => '<apiKey>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.aventure.vc/v1/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa");
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/people/detail/investor-activity?id=01993139-fc26-768a-bdf3-c8396c184be7&slug=stacey-bishop-san-mateo-ca-usa")! 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()
```