Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides JavaScript SDK examples.
Scanned 2/12/2026
Install via CLI
openskills install team-telnyx/telnyx-ext-agent-skills---
name: telnyx-seti-javascript
description: >-
Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This
skill provides JavaScript SDK examples.
metadata:
author: telnyx
product: seti
language: javascript
---
# Telnyx Seti - JavaScript
## Installation
```bash
npm install telnyx
```
## Setup
```javascript
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['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`
```javascript
const response = await client.seti.retrieveBlackBoxTestResults();
console.log(response.data);
```
No comments yet. Be the first to comment!