Discover/Exploding Topics API
live

Exploding Topics APIexplodingtopics.com

Access trending topics, startups, websites, and blog posts from Exploding Topics via 8 endpoints. Filter by category, volatility, period, and more.

Endpoint health
verified 3h ago
get_trending_topics
get_blog_posts
get_home_highlights
get_categories
get_top_websites
7/8 passing latest checkself-healing
Endpoints
8
Updated
22d ago

What is the Exploding Topics API?

The Exploding Topics API exposes 8 endpoints covering trending topics, emerging startups, top websites, and blog content from explodingtopics.com. The get_trending_topics endpoint returns paginated trend objects with keyword, growth percentages across configurable time periods, search history going back to 2004, category tags, and volatility signals — giving developers structured access to early-stage trend data without manual browsing.

Try it

No input parameters required.

api.parse.bot/scraper/67aaa11a-d73d-4946-bffa-82a5760b2c39/<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/67aaa11a-d73d-4946-bffa-82a5760b2c39/get_categories' \
  -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 explodingtopics-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.

"""
Exploding Topics SDK — discover trending topics, startups, and websites.

Demonstrates: trends.search, topic().related, startups.search, websites.list, articles.list
"""
from parse_apis.exploding_topics_api import (
    ExplodingTopics, TopicSort, TopicPeriod, Period, Volatile, StartupSort, TopicNotFound
)

et = ExplodingTopics()

# Search trending topics sorted by growth over 2 years, stable only
for trend in et.trends.search(sort=TopicSort.GROWTH, period=TopicPeriod.TWO_YEARS, volatile=Volatile.STABLE, limit=3):
    print(trend.keyword, trend.path, trend.categories)

# Drill into one trend's full detail, then explore related topics
trend = et.trends.search(sort=TopicSort.GROWTH, limit=1).first()
if trend:
    detail = trend.details()
    print(detail.keyword, detail.brief_description[:80], detail.growth)

    for related in detail.related(period=Period.TWO_YEARS, limit=3):
        print(related.keyword, related.brief_description[:60])

# Browse trending startups with funding data
startup = et.startups.search(sort=StartupSort.GRADIENT, period=Period.TWO_YEARS, limit=1).first()
if startup:
    print(startup.keyword, startup.path, startup.brief_description[:80])
    if startup.startup_data:
        print(startup.startup_data.location, startup.startup_data.total_funding)

# Typed error handling: catch a missing topic
try:
    missing = et.topic("nonexistent-slug-xyz-99999").related(limit=1).first()
except TopicNotFound as exc:
    print(f"Topic not found: {exc.slug}")

# List top websites
site = et.websites.list(limit=1).first()
if site:
    print(site.path, site.ranks, site.results)

# List blog articles
article = et.articles.list(tag="featured", limit=1).first()
if article:
    print(article.title, article.slug, article.published, article.author.first_name)

print("exercised: trends.search / details / related / startups.search / websites.list / articles.list")
All endpoints · 8 totalmissing one? ·

Returns all topic category names mapped to their topic counts. The response is a flat object whose keys are category slugs and whose values are integers (topic counts), plus a lastUpdated Unix timestamp. Use these category names as filter values in get_trending_topics.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "automation": "integer, topic count for the automation category",
    "technology": "integer, topic count for the technology category",
    "lastUpdated": "integer, Unix timestamp of when counts were last refreshed"
  },
  "sample": {
    "data": {
      "beauty": 109872,
      "health": 304420,
      "automation": 37819,
      "technology": 211669,
      "lastUpdated": 1780790401
    },
    "status": "success"
  }
}

About the Exploding Topics API

Trending Topics and Categories

The get_trending_topics endpoint accepts filters including categories (comma-separated slugs from get_categories), period (24 or 60 months), volatile, and exclude_peaked. Each result in the trends array includes a keyword, path slug, growth percentages, briefDescription, categories, and a searchHistory array. The get_categories endpoint provides a flat object mapping every available category slug to its topic count, along with a lastUpdated Unix timestamp — use it to validate category names before filtering.

Topic Detail and Related Topics

Pass any path slug from get_trending_topics into get_topic_detail to retrieve the full trend object. This includes weekly searchHistory volumes since 2004, regressions models, socialChannelResults, TikTok activity data, Amazon productData, growth predictions, and relatedTopics. The get_related_topics endpoint accepts the same slug plus an optional period parameter (3, 6, 12, 24, or 60 months) and returns an array of thematically adjacent trend objects with their own growth, searchHistory, and briefDescription fields.

Startups and Websites

get_trending_startups returns paginated startup records with a startupData sub-object containing location, website, employees, funding details, and founding date. The period filter accepts values from 3 to 60 months. get_top_websites returns a ranked array of website objects with engagement metrics including visit counts, pages per visit, bounce rate, and average session duration, along with a display_date indicating when the dataset was compiled.

Blog Posts and Homepage Highlights

get_blog_posts supports an optional tag filter and returns post objects with title, slug, HTML body, summary, author, tags, categories, and published date, plus meta pagination fields (count, next_page, previous_page). get_home_highlights combines the top 3 trending topics, top 3 trending startups, and the full top websites list into a single response — useful for dashboard overviews that need a quick snapshot without issuing multiple paginated requests.

Reliability & maintenanceVerified

The Exploding Topics API is a managed, monitored endpoint for explodingtopics.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when explodingtopics.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 explodingtopics.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
3h ago
Latest check
7/8 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
  • Monitor search volume growth for emerging keywords using searchHistory weekly data going back to 2004
  • Identify early-stage startups by filtering get_trending_startups results on funding stage and employee count
  • Build a category-scoped trend tracker using get_categories slugs as live filter inputs to get_trending_topics
  • Discover adjacent opportunities by pulling get_related_topics for a given trend slug and comparing growth rates
  • Track engagement shifts across top websites using bounce rate, pages per visit, and session duration from get_top_websites
  • Enrich a content calendar by pulling get_blog_posts filtered by tag and matching topics to trend keywords
  • Create a homepage intelligence widget using get_home_highlights to surface the current top 3 topics and startups in one request
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 Exploding Topics have an official developer API?+
Exploding Topics does not publish a public developer API. The data available through this Parse API is not accessible via an official documented endpoint from explodingtopics.com.
What does `get_topic_detail` return beyond what `get_trending_topics` includes?+
get_topic_detail adds several fields not present in the list endpoint: weekly searchHistory going back to 2004, regressions models, socialChannelResults, TikTok activity data, Amazon productData, and growth predictions. The list endpoint returns a briefDescription and aggregate growth metrics, but the detail endpoint is the only place to get per-channel social data and Amazon product signals.
Can I filter trending topics by geographic region?+
Not currently. The API filters topics by categories, period, volatile, and exclude_peaked, but does not expose a region or country parameter. Search history data is not broken out by geography. You can fork this API on Parse and revise it to add a geographic filter endpoint if the underlying data supports it.
What is the `volatile` parameter in `get_trending_topics` and what values does it accept?+
The volatile parameter filters results by volatility level — separating steadily growing trends from spiky or unpredictable ones. The endpoint accepts it as a string, but the specific accepted values (such as 'true'/'false' or named tiers) are not enumerated in the spec. Test with the get_home_highlights endpoint first to see example volatility values on returned trend objects before applying the filter.
Does the API expose individual user data, trend alerts, or saved search lists?+
No. The API covers publicly visible trend data, startup listings, website rankings, and blog content. User account data, personalized alerts, and saved topic lists from Exploding Topics are not exposed by any of the 8 endpoints. You can fork this API on Parse and revise it to add endpoints for any additional public-facing data surfaces the site exposes.
Page content last updated . Spec covers 8 endpoints from explodingtopics.com.
Related APIs in B2b DirectorySee all →
trends.google.com API
Discover what's trending right now in any country by accessing the top search topics with real-time search volume, growth rates, and related queries. Stay informed on trending categories and see which searches are gaining the most momentum in your target markets.
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.
stocktwits.com API
Discover which stocks are generating the most buzz on Stocktwits by accessing real-time trending symbols along with company names, trending scores, current price data, and community sentiment summaries. Stay ahead of market conversations by monitoring what the investing community is actively discussing and trading.
insights.trendforce.com API
Access semiconductor and AI industry analysis articles from TrendForce Insights, browsing post listings and retrieving full article content organized into text sections and figures. Perfect for staying updated on tech industry trends and feeding structured article data into language models for analysis.
smashingmagazine.com API
Access Smashing Magazine's library of articles, books, ebooks, newsletters, and events with powerful search and filtering capabilities. Browse by category, discover related content, explore author profiles, and stay updated with the latest design and web development resources.
airdrops.io API
Discover and track crypto airdrops in real-time by browsing latest opportunities, searching by category, and viewing detailed project information including participation requirements and token details. Monitor live cryptocurrency prices and stay updated on hot and potential airdrops all in one place.
ceo.ca API
Monitor trending stocks, browse popular discussion posts, and read full conversation threads from CEO.ca to stay informed on market discussions and investment opportunities. Get real-time insights into what's being talked about and what stocks are gaining traction on the platform.
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.