# telnyx-seti-ruby > Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Ruby SDK examples. - Author: aisling404 - Repository: team-telnyx/telnyx-ext-agent-skills - Version: 20260206155921 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/team-telnyx/telnyx-ext-agent-skills - Web: https://mule.run/skillshub/@@team-telnyx/telnyx-ext-agent-skills~telnyx-seti-ruby:20260206155921 --- --- name: telnyx-seti-ruby description: >- Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Ruby SDK examples. metadata: author: telnyx product: seti language: ruby --- # Telnyx Seti - Ruby ## Installation ```bash gem install telnyx ``` ## Setup ```ruby require "telnyx" client = Telnyx::Client.new( api_key: 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` ```ruby telnyx = Telnyx::Client.new(api_key: "My API Key") response = telnyx.seti.retrieve_black_box_test_results puts(response) ```