> 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 completion gates

GET https://api.aventure.vc/v1/entities/research/completion/gates

Returns the governed completion-gate catalog: each enrichment gate, the read that proves it, whether it belongs to the mandatory floor, and its pass criteria.

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

## 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)

## Response

### 200

OK

- `list of object`
  - `appliesToType` (list of string, required) — Entity type tokens the gate applies to; empty means all types.
  - `floor` (boolean, required) — Whether the gate is part of the mandatory full-enrichment floor set.
  - `gateId` (string, required) — Canonical dotted completion gate id.
  - `indexed` (enum, required) — Parent row the gate instantiates against. NONE is the flat entity-level gate; any other value owes one coverage slot per existing parent row and is never part of the flat floor set.
    - Allowed values: `NONE`, `PERSON`, `PRODUCT_SERVICE`
  - `label` (string, required) — Human-readable gate name.
  - `owningRead` (string, required) — OpenAPI operationId of the canonical read that proves the gate.
  - `passCriteria` (string, required) — What makes the gate pass.
  - `slotRef` (string, required) — Dotted EntityDetail field path the gate reads.
  - `unobtainableAllowed` (boolean, required) — Whether a source-backed unobtainable closes the gate.
  - `minCount` (integer, optional, nullable) — Minimum row count when the gate requires multiple rows.

## Examples

**Response**

```json
[
  {
    "appliesToType": [
      "Company"
    ],
    "floor": true,
    "gateId": "entity.founded",
    "indexed": "NONE",
    "label": "Founded Year",
    "owningRead": "getEntityDetail",
    "passCriteria": "string",
    "slotRef": "core.foundedYear",
    "unobtainableAllowed": true,
    "minCount": 1
  }
]
```

**SDK Code**

```python
import requests

url = "https://api.aventure.vc/v1/entities/research/completion/gates"

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

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

print(response.json())
```

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

	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/research/completion/gates")

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/research/completion/gates")
  .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/research/completion/gates', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp
using RestSharp;

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