Quiver Quantitative Beta API

The Beta API from Quiver Quantitative — 6 operation(s) for beta.

Operations 6

GET /beta/live/congresstrading Live congressional trading activity #
GET /beta/historical/congresstrading/{ticker} Historical congressional trading for a ticker #
GET /beta/live/governmentcontracts Live government contract awards #
GET /beta/historical/lobbying/{ticker} Historical corporate lobbying for a ticker #
GET /beta/historical/insiders/{ticker} Historical insider trading for a ticker #
GET /beta/historical/wikipedia/{ticker} Historical Wikipedia page views for a ticker #

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/quiver-beta-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

quiver-beta-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quiver Quantitative Beta API
  description: Quiver Quantitative exposes alternative-data datasets including congressional and Senate trading, insider activity, lobbying records, government contracts, and other non-traditional financial signals via a single REST API. Authentication is performed with a Bearer token API key.
  version: beta
servers:
- url: https://api.quiverquant.com
  description: Production
security:
- BearerAuth: []
tags:
- name: Beta
paths:
  /beta/live/congresstrading:
    get:
      summary: Live congressional trading activity
      operationId: liveCongressTrading
      responses:
        '200':
          description: Recent congressional trades
      tags:
      - Beta
  /beta/historical/congresstrading/{ticker}:
    get:
      summary: Historical congressional trading for a ticker
      operationId: historicalCongressTradingByTicker
      parameters:
      - $ref: '#/components/parameters/Ticker'
      responses:
        '200':
          description: Historical congressional trades
      tags:
      - Beta
  /beta/live/governmentcontracts:
    get:
      summary: Live government contract awards
      operationId: liveGovernmentContracts
      responses:
        '200':
          description: Recent government contracts
      tags:
      - Beta
  /beta/historical/lobbying/{ticker}:
    get:
      summary: Historical corporate lobbying for a ticker
      operationId: historicalLobbyingByTicker
      parameters:
      - $ref: '#/components/parameters/Ticker'
      responses:
        '200':
          description: Lobbying records
      tags:
      - Beta
  /beta/historical/insiders/{ticker}:
    get:
      summary: Historical insider trading for a ticker
      operationId: historicalInsidersByTicker
      parameters:
      - $ref: '#/components/parameters/Ticker'
      responses:
        '200':
          description: Insider trading records
      tags:
      - Beta
  /beta/historical/wikipedia/{ticker}:
    get:
      summary: Historical Wikipedia page views for a ticker
      operationId: historicalWikipediaByTicker
      parameters:
      - $ref: '#/components/parameters/Ticker'
      responses:
        '200':
          description: Wikipedia page-view time series
      tags:
      - Beta
components:
  parameters:
    Ticker:
      name: ticker
      in: path
      required: true
      description: Stock ticker symbol (e.g. AAPL)
      schema:
        type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'Bearer token from your Quiver Quantitative account. Pass as `Authorization: Bearer <API_KEY>`.'