Discover/aaii.com API
live

aaii.com APIaaii.com

Access AAII Investor Sentiment Survey data via API. Get weekly bullish/bearish/neutral readings, ~52 weeks of history, state breakdowns, and historical averages.

Endpoints
3
Updated
3mo ago
Try it

No input parameters required.

api.parse.bot/scraper/8c822fae-6fc0-4ddc-9498-e70358c72ccf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8c822fae-6fc0-4ddc-9498-e70358c72ccf/get_current_sentiment' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Get the latest AAII investor sentiment survey data including the current week's bullish/neutral/bearish percentages, last 4 weeks of data, live vote percentages, historical averages, 1-year sentiment highs, the weekly special question with results, and the latest commentary article.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "commentary": "object with date, title, url, and summary of the latest sentiment commentary article",
    "current_week": "object with date, bullish, neutral, bearish percentages for the latest survey week",
    "recent_weeks": "array of the last 4 weekly sentiment objects (date, bullish, neutral, bearish)",
    "one_year_highs": "object with bullish_high, neutral_high, bearish_high (each containing value and week_ending)",
    "special_question": "object with question, question_date, total_votes, and answers array",
    "historical_averages": "object with long-term average bullish, neutral, bearish percentages",
    "live_vote_percentages": "object with current live bullish, neutral, bearish vote percentages"
  },
  "sample": {
    "data": {
      "commentary": {
        "url": "https://www.aaii.com/latest/article/477283-aaii-sentiment-survey-pessimism-eases",
        "date": "May 7, 2026",
        "title": "AAII Sentiment Survey: Pessimism Eases",
        "summary": "Pessimism among individual investors about the short-term outlook for stocks decreased in the latest AAII Sentiment Survey."
      },
      "current_week": {
        "date": "5/13/2026",
        "bearish": 36.6,
        "bullish": 39.3,
        "neutral": 24.1
      },
      "recent_weeks": [
        {
          "date": "5/13/2026",
          "bearish": 36.6,
          "bullish": 39.3,
          "neutral": 24.1
        },
        {
          "date": "5/6/2026",
          "bearish": 33,
          "bullish": 38.3,
          "neutral": 28.7
        }
      ],
      "one_year_highs": {
        "bearish_high": {
          "value": 52,
          "week_ending": "Week Ending 3/18/2026"
        },
        "bullish_high": {
          "value": 49.5,
          "week_ending": "Week Ending 1/14/2026"
        },
        "neutral_high": {
          "value": 31.4,
          "week_ending": "Week Ending 3/4/2026"
        }
      },
      "special_question": {
        "answers": [
          {
            "votes": 162,
            "answer": "It was the right move",
            "percentage": 71.7
          }
        ],
        "question": "What do you think about the Federal Reserve's decision to keep interest rates unchanged?",
        "total_votes": 226,
        "question_date": "April, 30 2026 00:00:00"
      },
      "historical_averages": {
        "bearish": 31,
        "bullish": 37.5,
        "neutral": 31.5
      },
      "live_vote_percentages": {
        "bearish": 36.53,
        "bullish": 39.82,
        "neutral": 23.65
      }
    },
    "status": "success"
  }
}

About the aaii.com API

The AAII Sentiment API provides three endpoints covering the American Association of Individual Investors' weekly survey data, which has tracked individual investor market outlook since 1987. The get_current_sentiment endpoint returns this week's bullish, neutral, and bearish percentages alongside live vote tallies, one-year highs, historical long-term averages, a weekly special question with vote results, and a link to the latest commentary article.

What the API returns

Three endpoints cover the full public surface of the AAII Investor Sentiment Survey. get_current_sentiment is the main weekly snapshot: it returns a current_week object (date, bullish, neutral, bearish percentages), a recent_weeks array of the prior four weeks, live_vote_percentages reflecting real-time voting, one_year_highs for each sentiment direction (value + week_ending date), historical_averages with long-run mean readings, and a special_question object with the current poll question, total votes, and a full answers array. A commentary object surfaces the latest editorial piece (date, title, URL, summary).

Historical and geographic data

get_historical_sentiment returns approximately 52 weeks of weekly records. Each entry in the weekly_data array includes date, bullish/neutral/bearish percentages, running bull and bear averages (bull_avg, bear_avg), and the bull-bear spread. The date_range object and total_weeks integer let you quickly verify coverage before building charts. get_state_sentiment breaks the current survey period down by US state and territory: the states object maps abbreviations (CA, TX, NY, etc.) to bullish/neutral/bearish percentages, with total_states indicating how many states have sufficient respondents for that period.

Coverage notes

All three endpoints take no input parameters — data is scoped to the current survey period or the trailing ~52-week window. The historical endpoint does not provide the full archive back to 1987 in a single call. State-level data depends on respondent counts; not every state appears every week.

Common use cases
  • Plotting a 52-week bull-bear spread chart using the spread field from get_historical_sentiment
  • Alerting when bullish sentiment breaches its one-year high using one_year_highs from get_current_sentiment
  • Comparing live vote percentages against finalized weekly readings to detect intra-week sentiment shifts
  • Building a regional sentiment heatmap of US states using get_state_sentiment data
  • Tracking the weekly special question results to surface topical investor concerns
  • Backtesting contrarian trading signals against the historical bull-bear spread data
  • Displaying the latest AAII commentary link and summary in a financial news digest via the commentary object
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AAII offer an official developer API for its sentiment data?+
AAII does not publish a documented public developer API for its sentiment survey data. The data is available on the AAII website (aaii.com/sentiment-survey) as a member resource, but there is no official REST or data API with keys, versioning, or documentation.
What does `get_historical_sentiment` cover and how far back does it go?+
The endpoint returns approximately 52 weeks of weekly data. Each record includes date, bullish, neutral, and bearish percentages, running averages for bulls and bears, and the bull-bear spread. It does not return the full survey archive dating to 1987. You can fork the API on Parse and revise it to add a longer historical range endpoint if full-archive coverage is needed.
Does the state sentiment endpoint return data for every US state every week?+
Not always. The get_state_sentiment endpoint only includes states and territories with sufficient survey respondents in the current period. The total_states field tells you how many are present in a given response, but low-population states may be absent in some weeks. You can fork the API on Parse and revise it to add historical state-level tracking across multiple survey periods.
Can I filter historical sentiment data by a custom date range?+
The get_historical_sentiment endpoint takes no input parameters and returns the trailing ~52 weeks automatically. Custom date range filtering is not currently supported. You can fork the API on Parse and revise it to add date-range query parameters against a wider historical dataset.
How fresh is the data returned by `get_current_sentiment`?+
The AAII sentiment survey is conducted and published weekly, typically on Thursdays. The current_week object reflects the most recently published results, and live_vote_percentages reflects ongoing votes before the week closes. Intra-week live data may differ from the finalized reading published at week's end.
Page content last updated . Spec covers 3 endpoints from aaii.com.
Related APIs in FinanceSee all →
sentimentrader.com API
Track real-time market sentiment and investor behavior by accessing Smart Money/Dumb Money confidence levels, trending stocks, and capitulation signals to inform your trading decisions. Monitor macroeconomic conditions alongside sentiment indicators to get a comprehensive view of current market psychology and potential turning points.
cryptopanic.com API
Access real-time cryptocurrency market sentiment data from CryptoPanic. Retrieve news posts filtered by bullish or bearish sentiment, browse the full news feed with flexible filters, and fetch an aggregated sentiment score derived from 24-hour price movements across top cryptocurrencies.
alphavantage.co API
Track stock prices, forex rates, and cryptocurrency values with real-time and historical market data, while accessing company financials, earnings reports, and technical indicators. Search tickers, monitor economic indicators, analyze news sentiment, and get global quotes all in one place.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
insights.apmiindia.org API
Access comprehensive financial data on Indian PMS providers and investment approaches, including AUM breakdowns, industry dashboards, and detailed provider information. Search and compare investment strategies, view discretionary AUM details, and generate insight reports to analyze the PMS market landscape.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.
aeaweb.org API
Search for academic papers across American Economic Association journals to instantly access abstracts, author information, JEL classifications, and citation metrics. Retrieve detailed article information to stay current with the latest economic research and citations from premier sources like the American Economic Review.
allsides.com API
Get balanced news coverage from multiple political perspectives and discover media bias ratings to understand how outlets lean Left, Center, or Right. Search headlines by topic and perspective to compare how different viewpoints cover the same stories.