Discover/IdeaPulley API
live

IdeaPulley APIideapulley.com

Access IdeaPulley's daily SaaS ideas via API. Get scoring metrics, market analysis, trend data, related queries, and geographic interest for each idea.

This API takes change requests — .
Endpoint health
monitored
get_idea_trends
get_current_idea
get_previous_ideas
0/3 passing latest checkself-healing
Endpoints
3
Updated
28d ago

What is the IdeaPulley API?

The IdeaPulley API exposes 3 endpoints that surface daily SaaS startup ideas with 10+ structured response fields each, including moat scores, trend volume, industry classification, and market timing signals. get_current_idea returns today's featured idea with full metadata, while get_previous_ideas gives paginated access to the historical archive and get_idea_trends drills into live Google Trends data, related queries, and geographic breakdowns for any idea by ID.

Try it

No input parameters required.

api.parse.bot/scraper/1d8d3c96-8f45-4ab5-8b53-8077ce0b9a4b/<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/1d8d3c96-8f45-4ab5-8b53-8077ce0b9a4b/get_current_idea' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace ideapulley-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.ideapulley_idea_of_the_day_api import IdeaPulley, Idea, IdeaTrend

client = IdeaPulley()

# Get today's idea
today = client.ideas.current()
print(today.title, today.opportunity_score, today.moat_score)

# Browse previous ideas
for idea in client.ideas.list(limit=5):
    print(idea.title, idea.date, idea.feasibility_score)

# Get trend data for a specific idea by constructing it from its id
trend = client.idea(id=97).trends()
print(trend.live_trend.keyword, trend.live_trend.is_live)
print(trend.related_queries.rising)
print(trend.geographic_data.countries)
All endpoints · 3 totalmissing one? ·

Get the current Idea of the Day. Returns a single SaaS idea with scoring metrics, market analysis, timing signals, community signals, and trend data. The idea refreshes daily. No parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "id": "integer idea identifier",
    "date": "string ISO date YYYY-MM-DD",
    "tags": "array of string tags",
    "title": "string idea name",
    "tagline": "optional string short pitch",
    "category": "optional string category label",
    "industry": "optional string target industry",
    "moatScore": "integer 1-10",
    "trendData": "array of monthly trend volume objects with month and volume",
    "description": "string detailed description",
    "whyNowScore": "integer 1-10",
    "problemScore": "integer 1-10",
    "searchVolume": "integer estimated monthly searches",
    "timingSignal": "optional string timing explanation",
    "trendDirection": "string rising/stable/declining",
    "unfairAdvantage": "optional string moat explanation",
    "communitySignals": "array of community signal objects with platform, metric, value, sentiment",
    "feasibilityScore": "integer 1-10",
    "opportunityScore": "integer 1-10",
    "googleTrendsScore": "optional integer"
  },
  "sample": {
    "data": {
      "id": 100,
      "date": "2026-06-10",
      "tags": [],
      "title": "Crisis Manager",
      "tagline": null,
      "category": null,
      "industry": null,
      "moatScore": 6,
      "trendData": [
        {
          "month": "Jun 2025",
          "volume": 92
        }
      ],
      "description": "AI-powered crisis management platform for the US-Iran conflict",
      "whyNowScore": 7,
      "problemScore": 7,
      "searchVolume": 359410,
      "timingSignal": null,
      "trendDirection": "rising",
      "unfairAdvantage": null,
      "communitySignals": [
        {
          "value": "20 stories (avg 239 pts)",
          "metric": "stories",
          "platform": "HackerNews",
          "sentiment": "positive"
        }
      ],
      "feasibilityScore": 6,
      "opportunityScore": 7,
      "googleTrendsScore": 69
    },
    "status": "success"
  }
}

About the IdeaPulley API

Endpoints and Data Shape

The get_current_idea endpoint returns the active Idea of the Day as a single object. Fields include title, tagline, description, category, industry, and tags for context, plus a moatScore integer (1–10) indicating competitive defensibility and a trendData array of monthly volume objects. The idea object refreshes once per day; the date field (ISO format) tells you exactly which day's idea you're reading.

get_previous_ideas returns the same full idea structure for historical entries, ordered newest-first. Pass an integer limit parameter to control how many records come back. The response wraps results in an ideas array and includes a count field confirming how many were returned.

Trend and Geographic Detail

get_idea_trends accepts an idea_id (obtained from either listing endpoint) and returns three sub-objects. live_trend includes a data array, keyword, growth, avgInterest, recentTrend, and an isLive boolean. geographic_data breaks interest down by country and city arrays. related_queries provides rising and top query arrays, useful for spotting adjacent search demand or adjacent product angles.

Coverage Notes

The API covers ideas published on IdeaPulley's Idea of the Day feed. Trend data availability depends on the underlying keyword having sufficient search volume; the endpoint notes that some ideas may have limited trend data. There is no filtering by industry or category in the current endpoints — you retrieve ideas by recency or ID.

Reliability & maintenance

The IdeaPulley API is a managed, monitored endpoint for ideapulley.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ideapulley.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 ideapulley.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.

Latest check
0/3 endpoints 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
  • Track daily SaaS idea releases and archive them using get_previous_ideas with a scheduled limit pull
  • Score and rank idea candidates by moatScore to prioritize which opportunities to investigate further
  • Map idea popularity by geography using geographic_data country and city arrays from get_idea_trends
  • Identify rising search demand for a concept by inspecting the rising array in related_queries
  • Build a trend monitor that alerts when recentTrend or growth exceeds a threshold for a given idea
  • Filter the historical archive by industry or tags fields to surface ideas in a specific vertical
  • Compare trendData monthly volume across multiple idea IDs to gauge market momentum over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 IdeaPulley have an official developer API?+
IdeaPulley does not publish an official developer API. The Parse API is the structured programmatic way to access the site's idea data.
What does `get_idea_trends` return beyond the basic trend line?+
get_idea_trends returns three objects for a given idea_id: live_trend (keyword, growth rate, average interest, recent trend direction, and a raw data array), geographic_data (country and city breakdowns), and related_queries (separate rising and top query arrays). Not every idea has full data — the endpoint notes some ideas may have limited trend coverage depending on search volume.
Can I filter `get_previous_ideas` by category, industry, or tag?+
Not currently. The endpoint returns ideas in reverse chronological order and accepts only a limit integer — no filter parameters for category, industry, or tags. You can fork the API on Parse and revise it to add a filtering endpoint that matches on those fields.
How fresh is the current idea, and what happens if I call `get_current_idea` multiple times in one day?+
The idea object refreshes once per day. The date field on the response reflects the exact calendar date of the active idea, so repeated calls within the same day return the same record until the next daily refresh.
Does the API expose user votes, comments, or community engagement signals mentioned in the IdeaPulley site?+
Not currently. The endpoints cover idea metadata, scoring, and trend data but do not return community engagement figures such as vote counts or comments. You can fork the API on Parse and revise it to add an endpoint that surfaces those community signals.
Page content last updated . Spec covers 3 endpoints from ideapulley.com.
Related APIs in OtherSee all →
topstartups.io API
Access startup profiles, funding data, job listings, and salary benchmarks from TopStartups.io. Filter by industry, location, funding stage, company size, and more to explore the startup landscape at scale.
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.
insightpartners.com API
Search and browse Insight Partners' portfolio companies to discover software investments, view detailed company information including sectors, descriptions, and investment status, and access social media links for each company. Filter and paginate through the portfolio to find specific companies and learn more about their backgrounds and current status.
producthunt.com API
Access Product Hunt's daily leaderboards, detailed product pages, and search functionality. Retrieve ranked product launches for any date or date range, including upvote counts, descriptions, maker information, tags, and external links.
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.
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.
startups.rip API
Search and analyze data on 1,700+ Y Combinator startups, including their current status (active, acquired, or defunct), company details, and research reports organized by batch. Find similar companies, browse startups by cohort, and discover insights about YC's portfolio ecosystem.
trendhunter.com API
Browse the latest sustainability and eco-friendly trends organized by category with easy navigation through paginated results. Get in-depth details on any trend article including content, imagery, and metadata to stay informed on emerging environmental innovations.