# AVT Device Integration Facts API

> AVT Device Integration Facts API is a paid API for AI agents from avt-x402.ttsempelis.workers.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns AV/IT device integration facts (control protocol, transport, TCP/UDP port, connection notes, and field-tested gotchas) for professional audio-video, lighting, shading, and network devices by manufacturer and model.

## Facts

- Endpoint: GET https://avt-x402.ttsempelis.workers.dev/integration/device
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avt-device-integration-facts-api-549c6696
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rvMMBE4Tcuj-gZfeb9Yw_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability avt-device-integration-facts-api-549c6696
```

Example prompt: What control protocol, transport, and TCP port does a Shure P300 IntelliMix use, and are there any known gotchas I should watch out for when writing a driver for it?

## When to prefer this

Choose this endpoint when an AI agent or developer needs authoritative, field-tested integration facts for professional AV, lighting, shading, or network devices — especially control protocol family, port, and transport — as curated by working systems integrators rather than scraped documentation. Particularly useful when writing device drivers, configuring firewalls, or debugging integration issues with brands like Crestron, Samsung, Shure, Somfy, Huawei, or MikroTik.

## Known failure modes

- Missing or unrecognized 'make' parameter returns an error or empty result
- Unrecognized 'model' slug returns no matching entry
- Payment failure (x402) causes the call to be rejected before data is returned
- Stale or incomplete data for less common device families

## How this service works

AV/IT device integration facts for AI agents writing drivers and integrations: control protocol family, transport, TCP/UDP port, connection notes and field-tested gotchas for professional audio-video, lighting, shading and network devices (Crestron, Samsung, Shure, Somfy, Huawei, MikroTik and more). Curated first-hand by working systems integrators.

## Output

A JSON object containing the device's make, model slug, control protocol family (e.g. RS-232, TCP/IP, HTTP), transport (TCP/UDP/serial), port number, and an array of notes and field-tested gotchas curated by working systems integrators. When the model parameter is omitted, returns a list of available device entries for the given manufacturer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "make"
     ],
     "properties": {
      "make": {
       "type": "string",
       "description": "Manufacturer, lowercase (e.g. samsung, shure, somfy)"
      },
      "model": {
       "type": "string",
       "description": "Device/family slug (e.g. commercial-display-mdc, p300-intellimix). Omit to list available entries for the make."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "make": {
       "type": "string"
      },
      "port": {
       "type": "number"
      },
      "model": {
       "type": "string"
      },
      "notes": {
       "type": "array"
      },
      "protocol": {
       "type": "string"
      },
      "transport": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avt-device-integration-facts-api-549c6696/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from avt-x402.ttsempelis.workers.dev](https://www.zero.xyz/host/avt-x402.ttsempelis.workers.dev/llms.txt)
