> 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 news detail

GET https://api.aventure.vc/v1/news/detail

Returns full news article detail by id, slug, externalId, strict URL, or bounded title candidate signals. Ambiguous candidate signals return 409 ProblemDetail.details.newsCandidate; review those ids, update the matching article, and create only when all candidates are distinct and source evidence supports the target. score/threshold are review ranking, not absence proof. Handles canonical redirects for changed slugs.

Reference: https://docs.aventure.vc/api-reference/a-venture-api/news/get-news-detail

## Authentication

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

## Request

### Query parameters

- `id` (integer, optional) — Exact news article id. Mutually exclusive with slug, externalId, url, and title.
- `slug` (string, optional) — Exact news article slug (URL-friendly identifier). Mutually exclusive with id, externalId, url, and title.
- `externalId` (string, optional) — External ID or RSS GUID for ingestion-key lookup. Mutually exclusive with id, slug, url, and title.
- `url` (string, optional) — Original article URL to resolve via strict host+path or domain-only match. Mutually exclusive with id, slug, and externalId. May pair with title and publication to narrow candidate recovery after an exact URL miss. Pair with urlMatchMode to disambiguate.
- `title` (string, optional) — Candidate lookup signal: article title. Mutually exclusive with id, slug, and externalId. Combine with publication, urlDomain, or url for bounded candidate search.
- `publication` (string, optional) — Publication qualifier (e.g., 'TechCrunch', 'Forbes'). Narrows a title candidate search. Not an identifier on its own.
- `urlDomain` (string, optional) — Candidate lookup URL domain qualifier (host only, no path). Narrows a title candidate search. Not an identifier on its own.
- `urlMatchMode` (string, optional) — URL match mode qualifier: 'hostPath' (strict host + path match, default) or 'domain' (host-only match). Narrows url and urlDomain matching. Not an identifier on its own.

## Response

### 200

News detail as canonical JSON, or the same data rendered as compact text/plain.

- `core` (object, required) — Canonical news owner for list and core semantics
  - `id` (integer, required) — Type-safe identifier for news articles
  - `title` (string, required) — Article headline; the headline field is title
  - `author` (string, optional, nullable)
  - `category` (string, optional, nullable)
  - `createdAt` (datetime, optional, nullable)
  - `excerpt` (string, optional, nullable) — Article summary from the source publication feed; null means the feed supplied no description (expected absence, not an error) — full text is NewsDetail.content
  - `externalNewsArticle` (boolean, optional, nullable)
  - `newsImageThumbnail` (string, optional, nullable)
  - `newsUrlOriginal` (string, optional, nullable)
  - `pendingApproval` (integer, optional, nullable)
  - `publication` (string, optional, nullable)
  - `publishedAt` (datetime, optional, nullable)
  - `slug` (string, optional, nullable) — Canonical lowercase URL slug for the resource
  - `updatedAt` (datetime, optional, nullable)
- `entityMentionResolved` (list of object, required) — Resolved entity mentions — read-only display projections. News mutations attach entities only via flat entityJoinId values, never these nested objects.
  - `createdAt` (datetime, required)
  - `entityId` (string, required) — Canonical entity UUID
  - `internal` (boolean, required)
  - `updatedAt` (datetime, required)
  - `href` (string, optional, nullable)
  - `matchScore` (double, optional, nullable)
  - `matchType` (string, optional, nullable)
  - `mention` (string, optional, nullable)
  - `slug` (string, optional, nullable) — Canonical lowercase URL slug for the resource
  - `typeRecord` (enum, optional, nullable) — Canonical entity classification for the organization, product, and service records stored in the entity domain.
    - Allowed values: `Company`, `Investment Firm`, `Fund`, `Nonprofit`, `Government`, `Organization`, `Business Line`, `Product`, `Service`
- `personMentionResolved` (list of object, required) — Resolved person mentions — read-only display projections. News mutations attach people only via flat personId/personSlug values, never these nested objects.
  - `createdAt` (datetime, required)
  - `personId` (string, required) — Canonical person UUID
  - `updatedAt` (datetime, required)
  - `href` (string, optional, nullable)
  - `matchScore` (double, optional, nullable)
  - `matchType` (string, optional, nullable)
  - `mention` (string, optional, nullable)
  - `slug` (string, optional, nullable) — Canonical lowercase URL slug for the resource
- `content` (string, optional, nullable)
- `externalId` (string, optional, nullable)
- `linkedContent` (string, optional, nullable)

## Examples

**Response**

```json
{
  "core": {
    "id": 1,
    "title": "string",
    "author": "string",
    "category": "string",
    "createdAt": "2024-01-15T09:30:00Z",
    "excerpt": "string",
    "externalNewsArticle": true,
    "newsImageThumbnail": "string",
    "newsUrlOriginal": "string",
    "pendingApproval": 1,
    "publication": "string",
    "publishedAt": "2024-01-15T09:30:00Z",
    "slug": "aventure-vc",
    "updatedAt": "2024-01-15T09:30:00Z"
  },
  "entityMentionResolved": [
    {
      "createdAt": "2024-01-15T09:30:00Z",
      "entityId": "string",
      "internal": true,
      "updatedAt": "2024-01-15T09:30:00Z",
      "href": "string",
      "matchScore": 1.1,
      "matchType": "string",
      "mention": "string",
      "slug": "aventure-vc",
      "typeRecord": "Company"
    }
  ],
  "personMentionResolved": [
    {
      "createdAt": "2024-01-15T09:30:00Z",
      "personId": "string",
      "updatedAt": "2024-01-15T09:30:00Z",
      "href": "string",
      "matchScore": 1.1,
      "matchType": "string",
      "mention": "string",
      "slug": "aventure-vc"
    }
  ],
  "content": "string",
  "externalId": "string",
  "linkedContent": "string"
}
```

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/news/detail"

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

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

print(response.json())
```

```javascript
const url = 'https://api.aventure.vc/v1/news/detail';
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/news/detail"

	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/news/detail")

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/news/detail")
  .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/news/detail', [
  'headers' => [
    'X-Client-Secret' => '<apiKey>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.aventure.vc/v1/news/detail");
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/news/detail")! 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()
```