Nine Fives Attenuator API

Attenuation setpoint control

Operations 4

GET /api/attenuator Get current attenuation setpoint #
POST /api/attenuator Set attenuation setpoint #
GET /api/attenuator/startup Get startup attenuation setpoint #
POST /api/attenuator/startup Set startup attenuation setpoint #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nine-fives-attenuator-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nine-fives-attenuator-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nine Fives Programmable REST Attenuator API
  version: '1.0'
  description: JSON REST API served on port 80 by the Nine Fives POE-ATTEN-6G programmable RF attenuator for programmatic control and monitoring. Faithfully transcribed from the published device reference manual; the device also exposes SCPI over raw TCP (port 5025) and HiSLIP (port 4880). No authentication is required — the API is served directly by the device over the local network (Ethernet or USB-C).
  contact:
    name: Nine Fives
    url: https://ninefives.com
  x-generated: '2026-07-20'
  x-method: generated
  x-source: https://docs.ninefives.com/attenuator/rest-api/overview/
servers:
- url: http://{deviceIp}
  description: Device-hosted API on port 80 (default Ethernet fallback IP 192.168.0.95, USB-C 192.168.42.95)
  variables:
    deviceIp:
      default: 192.168.0.95
      description: The IP address of the attenuator device on the local network
tags:
- name: Attenuator
  description: Attenuation setpoint control
paths:
  /api/attenuator:
    get:
      operationId: getAttenuation
      tags:
      - Attenuator
      summary: Get current attenuation setpoint
      description: Returns the current attenuation setpoint in dB.
      responses:
        '200':
          description: Current setpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Attenuation'
    post:
      operationId: setAttenuation
      tags:
      - Attenuator
      summary: Set attenuation setpoint
      description: Sets the attenuation setpoint in dB. Valid range 0 to 95.25 dB in steps of 0.25 dB.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Attenuation'
      responses:
        '200':
          description: Setpoint applied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Attenuation'
        '400':
          description: Invalid request body
        '500':
          description: Failed to set setpoint (value out of range or invalid step size)
  /api/attenuator/startup:
    get:
      operationId: getStartupAttenuation
      tags:
      - Attenuator
      summary: Get startup attenuation setpoint
      description: Returns the startup attenuation setpoint — the value applied when the device boots.
      responses:
        '200':
          description: Startup setpoint
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartupAttenuation'
    post:
      operationId: setStartupAttenuation
      tags:
      - Attenuator
      summary: Set startup attenuation setpoint
      description: Sets the startup attenuation setpoint. Persisted and applied on every device boot. Valid range 0 to 95.25 dB in steps of 0.25 dB.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartupAttenuation'
      responses:
        '200':
          description: Startup setpoint saved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StartupAttenuation'
        '400':
          description: Invalid request body
        '500':
          description: Failed to save startup setpoint
components:
  schemas:
    StartupAttenuation:
      type: object
      required:
      - startup_setpoint
      properties:
        startup_setpoint:
          type: number
          minimum: 0
          maximum: 95.25
          multipleOf: 0.25
          description: Startup attenuation setpoint in dB, persisted across boots
    Attenuation:
      type: object
      required:
      - setpoint
      properties:
        setpoint:
          type: number
          minimum: 0
          maximum: 95.25
          multipleOf: 0.25
          description: Attenuation setpoint in dB (0 to 95.25 in steps of 0.25)