Frax Finance v1-gauge API

The v1-gauge API from Frax Finance — 2 operation(s) for v1-gauge.

Operations 2

GET /v1/gauge/info #
GET /v1/gauge/voter-info/{address} #

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/frax-v1-gauge-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

frax-v1-gauge-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Frax Finance V1 Gauge API
  description: The Frax Finance API
  version: '1.0'
  contact:
    name: Frax Finance
    url: https://docs.frax.finance
    email: no-reply@frax.finance
servers:
- url: https://api.frax.finance
tags:
- name: v1-gauge
paths:
  /v1/gauge/info:
    get:
      operationId: V1Controller_getGaugeInfo
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GaugeSlice'
      tags:
      - v1-gauge
  /v1/gauge/voter-info/{address}:
    get:
      operationId: V1Controller_getGaugeVoterInfo
      parameters:
      - name: address
        required: true
        in: path
        description: Address
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GaugeVoterInfoResponse'
      tags:
      - v1-gauge
components:
  schemas:
    GaugeVoterInfoResponse:
      type: object
      properties:
        address:
          type: string
        votes:
          type: array
          items:
            $ref: '#/components/schemas/GaugeVoteDTO'
        pct_weight_used:
          type: number
      required:
      - address
      - votes
      - pct_weight_used
    GaugeSlice:
      type: object
      properties:
        name:
          type: string
        gauge_index:
          type: number
        address:
          type: string
        gauge_weight:
          type: string
        relative_weight_now_raw:
          type: string
        relative_weight_now_pct:
          type: number
        relative_weight_next_raw:
          type: string
        relative_weight_next_pct:
          type: number
        fxs_now:
          type: number
        fxs_next:
          type: number
      required:
      - name
      - gauge_index
      - address
      - gauge_weight
      - relative_weight_now_raw
      - relative_weight_now_pct
      - relative_weight_next_raw
      - relative_weight_next_pct
      - fxs_now
      - fxs_next
    GaugeVoteDTO:
      type: object
      properties:
        gauge_address:
          type: string
        gauge_name:
          type: string
        vefxs_represented:
          type: number
        weight:
          type: number
        weight_pct:
          type: number
        last_vote_timestamp:
          type: number
      required:
      - gauge_address
      - gauge_name
      - vefxs_represented
      - weight
      - weight_pct
      - last_vote_timestamp
externalDocs:
  description: Open V2 Docs
  url: /v2/docs