
FiscalNote
Description
FiscalNote enables access to select market-leading, real-time data sets for legal, political, and regulatory information
Details
https://api.factba.se/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_model": "fiscalnote",
"name_for_human": "FiscalNote",
"description_for_model": "Use the Biden remarks API to answer questions about statements (spoken or written) made by President Biden. Use the calendar API to answer questions about the White House official calendar. Use the Roll Call API to search for news articles related to Congressional people and proceedings.",
"description_for_human": "FiscalNote enables access to select market-leading, real-time data sets for legal, political, and regulatory information",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://api.factba.se/openapi.json"
},
"logo_url": "https://api.factba.se/static/fn-logo.png",
"contact_email": "collin.stedman@fiscalnote.com",
"legal_info_url": ""
}
https://api.factba.se/openapi.json
{
"openapi": "3.0.2",
"info": {
"title": "FastAPI",
"version": "0.1.0"
},
"paths": {
"/white-house/calendar/{date}": {
"get": {
"summary": "Get Calendar For Date",
"operationId": "get_calendar_for_date_white_house_calendar__date__get",
"parameters": [
{
"required": true,
"schema": {
"title": "Date",
"type": "string",
"format": "date"
},
"name": "date",
"in": "path"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/api__routers__calendar__models__Response"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/remarks/biden/": {
"get": {
"summary": "List Biden Remarks",
"operationId": "list_biden_remarks_remarks_biden__get",
"parameters": [
{
"required": false,
"schema": {
"title": "Q",
"type": "string",
"default": ""
},
"name": "q",
"in": "query"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/api__routers__remarks__models__Response"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/roll-call/articles/": {
"get": {
"summary": "Search Articles",
"operationId": "search_articles_roll_call_articles__get",
"parameters": [
{
"required": false,
"schema": {
"title": "Q",
"type": "string",
"default": ""
},
"name": "q",
"in": "query"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/api__routers__roll_call__models__Response"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/": {
"get": {
"summary": "Read Root",
"operationId": "read_root__get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Article": {
"title": "Article",
"required": [
"date",
"text",
"headline",
"byline",
"slug"
],
"type": "object",
"properties": {
"date": {
"title": "Date",
"type": "string",
"format": "date"
},
"text": {
"title": "Text",
"type": "string"
},
"headline": {
"title": "Headline",
"type": "string"
},
"byline": {
"title": "Byline",
"type": "array",
"items": {
"type": "string"
}
},
"slug": {
"title": "Slug",
"type": "string"
}
}
},
"Calendar": {
"title": "Calendar",
"required": [
"date",
"calendar"
],
"type": "object",
"properties": {
"date": {
"title": "Date",
"type": "string",
"format": "date"
},
"calendar": {
"title": "Calendar",
"type": "array",
"items": {
"$ref": "#/components/schemas/Event"
}
}
}
},
"Coordinates": {
"title": "Coordinates",
"type": "object",
"properties": {
"latitude": {
"title": "Latitude",
"type": "number"
},
"longitude": {
"title": "Longitude",
"type": "number"
}
}
},
"Event": {
"title": "Event",
"required": [
"time",
"category",
"description",
"location"
],
"type": "object",
"properties": {
"time": {
"title": "Time",
"type": "string",
"format": "time"
},
"category": {
"title": "Category",
"type": "string"
},
"description": {
"title": "Description",
"type": "string"
},
"press_coverage": {
"title": "Press Coverage",
"type": "string"
},
"timezone": {
"title": "Timezone",
"type": "string"
},
"location": {
"$ref": "#/components/schemas/api__routers__calendar__models__Location"
}
}
},
"HTTPValidationError": {
"title": "HTTPValidationError",
"type": "object",
"properties": {
"detail": {
"title": "Detail",
"type": "array",
"items": {
"$ref": "#/components/schemas/ValidationError"
}
}
}
},
"Speech": {
"title": "Speech",
"required": [
"candidate",
"date",
"record_type",
"media_type",
"record_title",
"source",
"type",
"url",
"version",
"location"
],
"type": "object",
"properties": {
"candidate": {
"title": "Candidate",
"type": "string"
},
"date": {
"title": "Date",
"type": "string"
},
"image_url": {
"title": "Image Url",
"type": "string"
},
"record_type": {
"title": "Record Type",
"type": "string"
},
"media_type": {
"title": "Media Type",
"type": "string"
},
"record_title": {
"title": "Record Title",
"type": "string"
},
"source": {
"title": "Source",
"type": "string"
},
"type": {
"title": "Type",
"type": "string"
},
"url": {
"title": "Url",
"type": "string"
},
"version": {
"title": "Version",
"type": "string"
},
"video_url": {
"title": "Video Url",
"type": "string"
},
"location": {
"$ref": "#/components/schemas/api__routers__remarks__models__Location"
},
"transcript": {
"$ref": "#/components/schemas/Transcript"
}
}
},
"Transcript": {
"title": "Transcript",
"required": [
"text"
],
"type": "object",
"properties": {
"text": {
"title": "Text",
"type": "string"
},
"time_start": {
"title": "Time Start",
"type": "string"
},
"time_end": {
"title": "Time End",
"type": "string"
}
}
},
"ValidationError": {
"title": "ValidationError",
"required": [
"loc",
"msg",
"type"
],
"type": "object",
"properties": {
"loc": {
"title": "Location",
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
}
},
"msg": {
"title": "Message",
"type": "string"
},
"type": {
"title": "Error Type",
"type": "string"
}
}
},
"api__routers__calendar__models__Location": {
"title": "Location",
"required": [
"coordinates"
],
"type": "object",
"properties": {
"text": {
"title": "Text",
"type": "string"
},
"street_address": {
"title": "Street Address",
"type": "string"
},
"city": {
"title": "City",
"type": "string"
},
"county": {
"title": "County",
"type": "string"
},
"cbsa": {
"title": "Cbsa",
"type": "string"
},
"state": {
"title": "State",
"type": "string"
},
"state_code": {
"title": "State Code",
"type": "string"
},
"zipcode": {
"title": "Zipcode",
"type": "string"
},
"country": {
"title": "Country",
"type": "string"
},
"coordinates": {
"$ref": "#/components/schemas/Coordinates"
}
}
},
"api__routers__calendar__models__Response": {
"title": "Response",
"required": [
"data"
],
"type": "object",
"properties": {
"data": {
"$ref": "#/components/schemas/Calendar"
}
}
},
"api__routers__remarks__models__Location": {
"title": "Location",
"required": [
"city",
"country"
],
"type": "object",
"properties": {
"city": {
"title": "City",
"type": "string"
},
"state": {
"title": "State",
"type": "string"
},
"state_code": {
"title": "State Code",
"type": "string"
},
"country": {
"title": "Country",
"type": "string"
}
}
},
"api__routers__remarks__models__Response": {
"title": "Response",
"required": [
"data"
],
"type": "object",
"properties": {
"data": {
"title": "Data",
"type": "array",
"items": {
"$ref": "#/components/schemas/Speech"
}
}
}
},
"api__routers__roll_call__models__Response": {
"title": "Response",
"required": [
"data"
],
"type": "object",
"properties": {
"data": {
"title": "Data",
"type": "array",
"items": {
"$ref": "#/components/schemas/Article"
}
}
}
}
}
},
"servers": [
{
"url": "https://api.factba.se"
}
]
}
Discover other plugins from the finance category

PortfolioPilot
Get a detailed assessment of your portfolio and pull 12-month forecasted returns for individual securities.
0 Comments

Ramp
Plugin for managing a Ramp account. You can view transactions, reimbursements, cards, memos, receipts, and users.
0 Comments

Savvy Trader AI
Realtime stock, crypto and other investment data.
0 Comments

AITickerChat
Retrieve USA stock insights from SEC filings as well as Earnings Call Transcripts.
0 Comments

PortfoliosLab
Stocks, ETFs, funds, crypto analysis: historical performance, volatility, risk metrics, Sharpe ratio, drawdowns, etc.
0 Comments

eToro trading and investments
etoro social investments platform plugin, get news, rates, charts, copy leading investors and learn how to invest.
0 Comments

Polygon
Market data, news, and fundamentals for stocks, options, forex, and crypto from Polygon.io.
0 Comments

Alpha Vantage
Plugin for fetching financial data from Alpha Vantage.
0 Comments

CreditYelp
Access various essential financial calculators for a detailed repayment schedule and payoff term.
0 Comments

PortfolioMeta
Analyze stocks and retrieve comprehensive real-time investment data and analytics.
0 Comments

Stonks AI
Fetch stock data based on a natural language query.
0 Comments

Statis Fund Finance
Financial data tool for analyzing equities. You can get price quotes, analyze moving averages, RSI, and more.
0 Comments

Options Pro
Options Pro is your personal options trading assistant to help you navigate market conditions.
0 Comments

Magnetis
Magnetis is a digital wealth manager. Get updated data on portfolios returns and allocations. Ask me about Magnetis.
0 Comments

FundsDB
Discover funding opportunities in UK and India on FundsDB. Type in your query in any language or /help for assistance.
0 Comments

Currency Converter
Convert currencies based on real-time rates!
0 Comments

Boolio Invest
The easiest way to analyze global stock values with the power of quantitative factor methodologies.
2 Comments
Acquire.com
Everything you need to buy and sell startups.
0 Comments

Abridged Due Diligence
Discover the details! Search through recent SEC filings, with links to deeper analysis.
0 Comments
Peel Hunt AI-ERA
AI Equity Research Assistant (AI-ERA).
0 Comments

Companies In The UK
Provides financial information on UK Companies.
0 Comments

ChatMoney
ChatMoney is a plugin for managing your finances.
0 Comments
Tax Calculator
Given an address (or city) in the United States and an amount, calculate the sales tax. Powered by the Avalara.
0 Comments

Forex-Rates
Forex Rates: Price analysis for currency markets. Gain insights, sentiment evaluation, and text completion.
0 Comments

Exchange Rates
Exchange Rates delivers real-time and historical data, enabling conversion and tracking for over 170 currencies.
0 Comments
Helper for site Instaforex company
Plugin that facilitates trading on the instaforex site.
0 Comments

Public
Get real-time and historical market data, including asset prices, news, research, and comprehensive financial analysis.
0 Comments

FinTorch Trading Assistant
Get a wide range of financial data companies to assist your trading / reearch / learning (financials, earning call transcript, analyst price prediction, DCF, social media sentiments, sales by business / geographic segmentation, insider trading information etc)
0 Comments

Traders Insight
Decode the latest technical analysis ideas for stocks and bitcoin from top traders.
0 Comments

Currency Today
Converts currency values based on the latest exchange rates.
0 Comments

Currency Converter
Convert currencies based on real-time rates.
0 Comments
Company Transcripts
Search and analyze the latest company transcripts for any stock (powered by Koyfin).
0 Comments

Interest Rates
Get Real Time Interest Rates From Central Banks
0 Comments

Finna Bolag
Seamlessly search for and retrieve Swedish companies' financial data.
0 Comments

Currency Converter
Convert currencies using the CoinGecko API.
0 Comments
OnePage Stock Ideas
Find a list of stock ideas by asking it or feeding it with news or article.
0 Comments

Austrian Bank Rates
Compare the rates and terms of checking accounts and savings accounts from Austrian banks.
0 Comments

AFinChat
Get information and analyze A-share stocks, but search for information only from China.
0 Comments

VAT-Search
Plugin for finding and validating VAT numbers of companies, sole traders and other organisations.
0 Comments
FCA FS Search
Search FCA and get product, individual and firm info using PRN, IRN and FRN.
0 Comments