# Telnyx Seti Python

> Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Python SDK examples.

- Skill: `team-telnyx/telnyx-seti-python` (Agent Skill)
- Install (CLI): `npx skillmds@latest add team-telnyx/telnyx-seti-python`
- Raw SKILL.md: https://api.skillmd.com/api/skills/team-telnyx/telnyx-seti-python/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: team-telnyx (https://skillmd.com/u/team-telnyx)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/team-telnyx/telnyx-seti-python

---


<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->

# Telnyx Seti - Python

## Installation

```bash
pip install telnyx
```

## Setup

```python
import os
from telnyx import Telnyx

client = Telnyx(
    api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
)
```

All examples below assume `client` is already initialized as shown above.

## Retrieve Black Box Test Results

Returns the results of the various black box tests

`GET /seti/black_box_test_results`

```python
response = client.seti.retrieve_black_box_test_results()
print(response.data)
```

