> 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 entity completion-floor coverage

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

Evaluates one entity against the mandatory completion floor using the already-assembled entity detail. Each slot reports present/count and how to obtain the gate when absent. Slots not derivable from the assembled detail report present=false with a direct read hint. Use includePrivate=true (privileged callers) to evaluate hidden or unpublished entities.

Reference: https://docs.aventure.vc/api-reference/a-venture-api/completion-gates/entity-detail-coverage

## 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) — Canonical entity UUID.

### Query parameters

- `includePrivate` (boolean, optional) — Privileged read scope; evaluate hidden/unpublished entities. Requires trusted credentials. Defaults to private for admin callers, public otherwise.

## Response

### 200

OK

- `entityId` (string, required) — Canonical entity UUID this coverage describes.
- `slot` (list of object, required) — One coverage row per evaluated gate: flat entity-level gates, plus one indexed row per associated person or Product/Service child for gates that repeat by parent.
  - `count` (integer, required) — Resolved row/value count backing this gate.
  - `coverage` (enum, required) — Coverage verdict for this gate on the assembled detail. NOT_EVALUABLE means the detail does not carry the gate, so it is neither satisfied nor unsatisfied here — grade it from owningRead instead of treating it as an unmet gate.
    - Allowed values: `PRESENT`, `ABSENT`, `NOT_EVALUABLE`
  - `gateId` (string, required) — Canonical dotted completion gate id.
  - `howToObtain` (string, required) — What to do to obtain this gate when it is not present.
  - `label` (string, required) — Human-readable gate name.
  - `owningRead` (string, required) — OpenAPI operationId of the canonical read that proves the gate.
  - `required` (boolean, required) — Whether this read can decide and demand the gate. True for mandatory flat-floor gates and for server-decidable indexed Product/Service gates. False for indexed per-person slots: their source-backed unobtainable relief lives only in the run completion ledger, so the server cannot terminally decide them.
  - `unobtainableAllowed` (boolean, required) — Whether the governed completion contract permits source-backed unobtainable evidence to relieve this exact absent slot.
  - `parentPersonId` (string, optional, nullable) — Parent person this slot was instantiated for when indexed per person. Null on flat and Product/Service-indexed gates. Two per-person slots sharing a gateId are distinguished by this id; per-person slots remain advisory rather than required.
  - `parentProductServiceId` (string, optional, nullable) — Parent Product/Service this slot was instantiated for when indexed per offering. Null on flat and per-person gates. Required Product/Service slots sharing a gateId are addressed independently by this id.

## Examples

**Response**

```json
{
  "entityId": "string",
  "slot": [
    {
      "count": 1,
      "coverage": "PRESENT",
      "gateId": "entity.founded",
      "howToObtain": "string",
      "label": "Founded Year",
      "owningRead": "getEntityDetail",
      "required": true,
      "unobtainableAllowed": true,
      "parentPersonId": "string",
      "parentProductServiceId": "string"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/entities/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage"

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

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

print(response.json())
```

```javascript
const url = 'https://api.aventure.vc/v1/entities/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage';
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/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage"

	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/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage")

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/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage")
  .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/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.aventure.vc/v1/entities/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage");
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/04e2bf9c-a100-72ad-83ff-ba69c647b30b/detail/coverage")! 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()
```