Discover/Value Investors Club API
live

Value Investors Club APIvalueinvestorsclub.com

Access Value Investors Club investment ideas via API. Retrieve stock picks, ticker symbols, ratings, market cap, position type, and author IDs with filtering and pagination.

This API takes change requests — .
Endpoint health
verified 2h ago
list_ideas
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Value Investors Club API?

The Value Investors Club API exposes 1 endpoint — list_ideas — that returns up to 10 investment ideas per page, each carrying 10+ fields including company name, ticker symbol, price, market cap in millions, position type, rating score, vote count, date posted, and a description preview. You can filter by geographic location, position type (long or short), date range, and sort by overall rating, quality, performance, recency, or activity.

This call costs2 credits / call— charged only on success
Try it
Page number for pagination, starting at 1. Each page returns up to 10 ideas.
Which category of ideas to display.
How to sort the ideas list.
Geographic location filter. Use 'all' for all locations, 'us' for US only, 'nus' for non-US only, or a specific country code (e.g. 'LN' for UK, 'JP' for Japan, 'CA' for Canada, 'DE' for Germany, 'AU' for Australia).
Filter by position type.
Time range filter for ideas. Applies to all sort modes. For rated and most_active sorts, controls the lookback window.
api.parse.bot/scraper/2968696f-1f2f-4173-88f2-524cd3e38e6d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2968696f-1f2f-4173-88f2-524cd3e38e6d/list_ideas?show=all&sort=highest_rated&location=all&position=all&daterange=6' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

List investment ideas from Value Investors Club with sorting and filtering. Each idea includes company name, ticker symbol, price, market cap, rating score, number of rating votes, position type (long/short), date posted, a description preview, and a user ID identifying the author. Sort by highest overall rated, highest quality rated, highest performance rated, most active, or most recent. Filter by long/short position, time range, show type, and geographic location. Returns up to 10 ideas per page. Non-members see 'member' as the author display name but receive unique user IDs that consistently identify each author across ideas. Ideas are limited to those posted within the last 90 days for non-members, unless using the 'all' daterange with a rated sort.

Input
ParamTypeDescription
pageintegerPage number for pagination, starting at 1. Each page returns up to 10 ideas.
showstringWhich category of ideas to display.
sortstringHow to sort the ideas list.
locationstringGeographic location filter. Use 'all' for all locations, 'us' for US only, 'nus' for non-US only, or a specific country code (e.g. 'LN' for UK, 'JP' for Japan, 'CA' for Canada, 'DE' for Germany, 'AU' for Australia).
positionstringFilter by position type.
daterangestringTime range filter for ideas. Applies to all sort modes. For rated and most_active sorts, controls the lookback window.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "count": "number of ideas returned on this page",
    "ideas": "array of idea objects, each containing id, key_id, company_name, symbol, price, market_cap_millions, position_type, date_posted, formatted_date, rating, rating_votes, author_display_name, user_id, description_preview, is_contest_winner, idea_url, and total_return_pct"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 10,
      "ideas": [
        {
          "id": 162435,
          "price": "17.87",
          "key_id": "1024886954",
          "rating": 6.3,
          "symbol": "VISN",
          "user_id": 44971,
          "idea_url": "https://valueinvestorsclub.com/idea/VISTANCE_NETWORKS_INC/1024886954",
          "date_posted": "2026-03-05 19:32:53",
          "company_name": "VISTANCE NETWORKS INC",
          "rating_votes": 17,
          "position_type": "long",
          "formatted_date": "Mar 5, 2026",
          "total_return_pct": null,
          "is_contest_winner": false,
          "author_display_name": "member",
          "description_preview": "Executive Summary Vistance Networks is sitting in the middle of a rare set of inefficiencies...",
          "market_cap_millions": "3,950"
        }
      ]
    },
    "status": "success"
  }
}

About the Value Investors Club API

What the API Returns

The list_ideas endpoint returns a paginated list of investment ideas published on Value Investors Club. Each idea object includes id, key_id, company_name, symbol, price, market_cap_millions, position_type (long or short), date_posted, a description preview field, a rating score, and the number of rating votes. A user_id field identifies the author of each idea, which allows you to track a contributor's submissions across multiple ideas even though author names are not exposed to unauthenticated access — those requests return 'member' as the display name.

Filtering and Sorting

The list_ideas endpoint accepts several optional parameters. The sort parameter controls ordering: options include overall rating, quality rating, performance rating, recency, and most active. The location parameter accepts 'all', 'us', 'nus' (non-US), or a specific country or region string. The position parameter filters for long-only or short-only ideas. The daterange parameter restricts results to a lookback window and interacts with sort modes such as rated and most_active. Pagination is controlled via the page parameter, starting at 1, with each page returning up to 10 results.

Response Structure

The top-level response includes page (current page number), count (number of ideas on the page), and ideas (the array of idea objects). The market_cap_millions field gives a numeric market cap figure useful for screening by company size. The show parameter allows selecting a specific category of ideas to display, giving you additional control over which subset of the community's submissions you retrieve.

Reliability & maintenanceVerified

The Value Investors Club API is a managed, monitored endpoint for valueinvestorsclub.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when valueinvestorsclub.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official valueinvestorsclub.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Screen for short-side investment theses by filtering position to short and sorting by quality rating
  • Track a prolific contributor's ideas over time using the user_id field across paginated results
  • Build a non-US equity watchlist by setting location to 'nus' and sorting by performance rating
  • Aggregate small-cap idea flow by combining market_cap_millions values with a date range filter
  • Monitor recent community activity by sorting list_ideas by recency and polling on a schedule
  • Compare long vs. short idea volume in a given date range by making parallel filtered requests
  • Feed a quantitative backtest pipeline with ticker symbols, position types, and post dates from the ideas array
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Value Investors Club have an official developer API?+
No. Value Investors Club does not publish a public developer API or documented data access program. This Parse API is the structured way to access the ideas data programmatically.
What does the `list_ideas` endpoint return for author information?+
Each idea object includes a user_id that identifies the author. Author display names are only visible to logged-in members of the site; unauthenticated access returns 'member' as the author name. The user_id field is consistent across ideas, so you can group or track a contributor's submissions without needing the display name.
Does the API return the full text of each investment thesis?+
Not currently. The list_ideas endpoint returns a description preview field rather than the complete thesis text. The API covers company name, ticker, price, market cap, position type, ratings, vote counts, date posted, and author user ID. You can fork it on Parse and revise it to add an endpoint that retrieves the full idea detail page.
Can I filter ideas by sector, industry, or market cap range directly?+
Not currently. The available filters are location, position, daterange, and show category. The market_cap_millions field is returned per idea, so you can filter by size client-side. You can fork this API on Parse and revise it to add server-side sector or market cap range filtering.
How does pagination work and how many ideas are returned per page?+
The page parameter starts at 1. Each page returns up to 10 ideas. The response includes a count field confirming how many ideas are present on the current page, and a page field echoing the current page number. Iterate through pages incrementally to retrieve larger result sets.
Page content last updated . Spec covers 1 endpoint from valueinvestorsclub.com.
Related APIs in FinanceSee all →
ideapulley.com API
Get fresh SaaS startup ideas daily with detailed market analysis and scoring metrics to fuel your entrepreneurial inspiration. Browse current and historical ideas while tracking market trends to identify the most promising opportunities.
tipranks.com API
Discover top-performing stocks and access detailed analyst ratings and earnings forecasts to make informed investment decisions. Get real-time stock information including performance metrics and expert analyst opinions all in one place.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
openvc.app API
Search through 16,000+ venture capital firms and angel investors on OpenVC. Filter by industry category (e.g., Energy, Fintech) to discover investors focused on a specific sector, then retrieve detailed profiles including firm type, investment thesis, check size, geographic focus, and portfolio companies.
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.
vcsheet.com API
Access investor profiles, venture funds, curated sheets, and press contacts from VCSheet.com. Supports listing, searching, and detailed profile lookups.
sportscardinvestor.com API
Access data from sportscardinvestor.com.
openinsider.com API
Track insider trading activity by accessing the latest SEC filings, identifying cluster buys, and discovering top insider purchases with advanced filtering capabilities. Screen stocks based on insider behavior patterns and visualize buy/sell trends to inform your investment decisions.