> ## Documentation Index
> Fetch the complete documentation index at: https://docs.app.strix.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Network Connectors

> Reach internal targets through Strix network connectors

export const ScarfPixel = () => <img referrerPolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=831669b6-b4bd-42cb-8832-2122c03e1d5f" alt="" width="1" height="1" style={{
  position: "absolute",
  width: 0,
  height: 0,
  opacity: 0,
  pointerEvents: "none"
}} />;

<ScarfPixel />

Network connectors let Strix scan internal/private targets by routing traffic through a connector you deploy in your network.

## List connectors

```bash theme={null}
curl -X GET "https://app.strix.ai/api/v1/connectors" \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"
```

**Required scope:** `connectors:read`

## Create a connector

Creating a connector returns the enrollment material needed to bring it online:

```bash theme={null}
curl -X POST "https://app.strix.ai/api/v1/connectors" \
  -H "Authorization: Bearer <YOUR_API_TOKEN>" \
  -H "Content-Type: application/json" \
  -d '{"name": "prod-vpc-connector"}'
```

**Required scope:** `connectors:write`

## Get a connector

```bash theme={null}
curl -X GET "https://app.strix.ai/api/v1/connectors/<CONNECTOR_ID>" \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"
```

**Required scope:** `connectors:read`

## Check live status

```bash theme={null}
curl -X GET "https://app.strix.ai/api/v1/connectors/<CONNECTOR_ID>/status" \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"
```

**Required scope:** `connectors:read`

## Delete a connector

```bash theme={null}
curl -X DELETE "https://app.strix.ai/api/v1/connectors/<CONNECTOR_ID>" \
  -H "Authorization: Bearer <YOUR_API_TOKEN>"
```

**Required scope:** `connectors:write`
