> 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.

# List entity content

GET https://api.aventure.vc/v1/entities/{entityId}/content

Returns news articles, blog posts, repositories, websites, and pages related to an entity.

Reference: https://docs.aventure.vc/api-reference/a-venture-api/content/list-entity-content

## Authentication

- `Authorization` header (bearer token, required) — User bearer token: Supabase or Clerk session JWT, Clerk OAuth access token, or Clerk personal API key
- `X-API-Key` header (required) — Admin API key for system-to-system write operations
- `X-Client-Secret` header (required) — Client secret for read-only service-to-service access (no writes)

## Request

### Path parameters

- `entityId` (string, required) — Entity UUID whose content is listed.

### Query parameters

- `topic` (string, optional) — Topic key or source category.
- `contentType` (enum, optional) — Public content type filter.
  - Allowed values: `newsArticle`, `blogPost`, `externalSocialPost`, `repositoryOwner`, `repository`, `webSite`, `webPage`, `researchPaper`
- `relation` (enum, optional) — Owner relation filter.
  - Allowed values: `by`, `about`
- `year` (integer, optional) — Best-effort content year filter.
- `page` (integer, optional, default: 0) — Zero-based page index (0..N)
- `size` (integer, optional, default: 20) — The size of the page to be returned
- `sort` (list of string, optional) — Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
- `existenceProbe` (boolean, optional, default: false) — Set true for first-page content-existence probes that do not need exact totals or stable ordering.

## Response

### 200

OK

- `content` (list of object, optional)
  - `contentId` (string, required) — Stable content id scoped by contentType.
  - `contentType` (enum, required) — Public content source type.
    - Allowed values: `newsArticle`, `blogPost`, `externalSocialPost`, `repositoryOwner`, `repository`, `webSite`, `webPage`, `researchPaper`
  - `title` (string, required) — Human title or best available display label. webPage rows restate the page URL when the crawl captured no label; renderers may humanize that fallback.
  - `canonicalUrl` (string, optional, nullable) — Canonical URL when known.
  - `createdAt` (datetime, optional, nullable) — Content row creation instant when known.
  - `publishedAt` (datetime, optional, nullable) — Publication or source activity instant when known.
  - `relation` (enum, optional, nullable) — How this content relates to the requested owner.
    - Allowed values: `by`, `about`
  - `sourceDomain` (string, optional, nullable) — Registrable source domain when known.
  - `sourceName` (string, optional, nullable) — Publication, platform owner, or source label.
  - `summary` (string, optional, nullable) — Short summary or excerpt when known.
  - `topic` (string, optional, nullable) — Single canonical topic key (web-crawl section vocabulary) or source category (repository language); null when the source has no classified topic.
  - `updatedAt` (datetime, optional, nullable) — Content row update instant when known.
  - `url` (string, optional, nullable) — Primary URL for this content card.
  - `year` (integer, optional, nullable) — Best-effort content year used by the year filter.
- `empty` (boolean, optional)
- `first` (boolean, optional)
- `last` (boolean, optional)
- `number` (integer, optional)
- `numberOfElements` (integer, optional)
- `pageable` (object, optional)
  - `offset` (long, optional)
  - `pageNumber` (integer, optional)
  - `pageSize` (integer, optional)
  - `paged` (boolean, optional)
  - `sort` (object, optional)
    - `empty` (boolean, optional)
    - `sorted` (boolean, optional)
    - `unsorted` (boolean, optional)
  - `unpaged` (boolean, optional)
- `size` (integer, optional)
- `sort` (object, optional)
  - `empty` (boolean, optional)
  - `sorted` (boolean, optional)
  - `unsorted` (boolean, optional)
- `totalElements` (long, optional)
- `totalPages` (integer, optional)

## Examples

**Response**

```json
{
  "content": [
    {
      "contentId": "string",
      "contentType": "newsArticle",
      "title": "string",
      "canonicalUrl": "string",
      "createdAt": "2024-01-15T09:30:00Z",
      "publishedAt": "2024-01-15T09:30:00Z",
      "relation": "by",
      "sourceDomain": "string",
      "sourceName": "string",
      "summary": "string",
      "topic": "string",
      "updatedAt": "2024-01-15T09:30:00Z",
      "url": "string",
      "year": 1
    }
  ],
  "empty": true,
  "first": true,
  "last": true,
  "number": 1,
  "numberOfElements": 1,
  "pageable": {
    "offset": 1,
    "pageNumber": 1,
    "pageSize": 1,
    "paged": true,
    "sort": {
      "empty": true,
      "sorted": true,
      "unsorted": true
    },
    "unpaged": true
  },
  "size": 1,
  "sort": {
    "empty": true,
    "sorted": true,
    "unsorted": true
  },
  "totalElements": 1,
  "totalPages": 1
}
```

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/entities/entityId/content"

headers = {"Authorization": "Bearer <token>"}

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

print(response.json())
```

```javascript
const url = 'https://api.aventure.vc/v1/entities/entityId/content';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

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/entityId/content"

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

	req.Header.Add("Authorization", "Bearer <token>")

	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/entityId/content")

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

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

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/entityId/content")
  .header("Authorization", "Bearer <token>")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.aventure.vc/v1/entities/entityId/content', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.aventure.vc/v1/entities/entityId/content");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.aventure.vc/v1/entities/entityId/content")! 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()
```