openapi: 3.1.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 `.'