Discover/TrendHunter API
live

TrendHunter APItrendhunter.com

Access TrendHunter trend articles via API. List trends by category with pagination or fetch full article details including body text, author, score, and metadata.

Endpoint health
verified 3h ago
list_trends
get_trend
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the TrendHunter API?

The TrendHunter API provides two endpoints for accessing trend content from TrendHunter.com. The list_trends endpoint returns up to 30 trend summaries per page — including title, subtitle, trend label, description, publication date, and image URL — organized by category slug. The get_trend endpoint retrieves the complete article body, author, popularity score (0–100), breadcrumb path, and category for any individual trend by its URL slug.

Try it
Page number for pagination. Each page returns up to 30 trends.
Category slug for the trend listing page.
api.parse.bot/scraper/02c53b04-2fe6-4839-816e-ac8f789abd7d/<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/02c53b04-2fe6-4839-816e-ac8f789abd7d/list_trends?page=1&category=eco' \
  -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 trendhunter-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.


"""Walkthrough: TrendHunter SDK — browse eco trends and drill into article details."""
from parse_apis.trendhunter_com_api import TrendHunter, TrendNotFound, Category

client = TrendHunter()

# List eco trend summaries — limit caps total items fetched across pages.
for summary in client.trend_summaries.list(category=Category.ECO, limit=5):
    print(summary.title, "|", summary.date, "|", summary.trend_label)

# Drill into the first result for full article details.
first = client.trend_summaries.list(category=Category.ECO, limit=1).first()
if first:
    trend = first.details()
    print(trend.title, "|", trend.author, "|", trend.date_published)
    print(trend.body[:200])

# Direct lookup by slug via the trends collection.
try:
    detail = client.trends.get(slug="blue-ocean-closures-paperplug")
    print(detail.title, detail.score, detail.category)
except TrendNotFound as exc:
    print(f"Trend not found: {exc.slug}")

print("exercised: trend_summaries.list / summary.details / trends.get")
All endpoints · 2 totalmissing one? ·

List trend articles from a category page with pagination. Returns 30 trends per page including title, subtitle, trend label, short description, publication date, and image. Categories correspond to top-level navigation sections on TrendHunter. Results are auto-iterated across pages.

Input
ParamTypeDescription
pageintegerPage number for pagination. Each page returns up to 30 trends.
categorystringCategory slug for the trend listing page.
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "count": "integer",
    "trends": "array of trend summary objects with slug, title, subtitle, date, trend_label, description, image_url, url",
    "category": "string"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 30,
      "trends": [
        {
          "url": "https://www.trendhunter.com/trends/hydrogen-train",
          "date": "JUL 1, 2026",
          "slug": "hydrogen-train",
          "title": "Sleek Emissions-Free Trains",
          "subtitle": "This Hydrogen Train Was Developed for Narrow-Gauge Italian Tracks",
          "image_url": "https://cdn.trendhunterstatic.com/phpthumbnails/620/620207/620207_1_468.jpeg",
          "description": "Hydrogen propulsion tailored for compact rail corridors creates new possibilities for decarbonizing legacy transit systems.",
          "trend_label": "Narrow-Gauge Hydrogen Rail"
        }
      ],
      "category": "eco"
    },
    "status": "success"
  }
}

About the TrendHunter API

Listing Trends by Category

The list_trends endpoint accepts a category parameter (a slug matching TrendHunter's top-level navigation sections, such as eco, fashion, or tech) and an optional page integer for pagination. Each response includes a trends array of up to 30 objects, each carrying slug, title, subtitle, date, trend_label, description, image_url, and url. The response also echoes back the current page number, item count, and the active category string, making it straightforward to iterate across pages programmatically.

Fetching Full Article Detail

The get_trend endpoint takes a slug — typically obtained from a list_trends result — and returns the complete article. Key fields include body (full article text), author, score (an integer from 0 to 100 representing article popularity), breadcrumb (an ordered array of strings showing the category path), image_url, and a short description. The category field aligns with the category returned in list results, allowing you to cross-reference listings with detail data.

Data Shape and Coverage

TrendHunter organizes content into named categories that correspond to site navigation sections. The trend_label field in list results gives a short thematic tag distinct from the broader category — useful for clustering or filtering results downstream. Publication dates are available in list results via the date field. The score field in detail responses is a site-assigned popularity percentage, not a derived metric.

Reliability & maintenanceVerified

The TrendHunter API is a managed, monitored endpoint for trendhunter.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when trendhunter.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 trendhunter.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
2/2 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 emerging trends in a specific category by polling list_trends with a category slug and storing new slug and date values over time.
  • Build a trend digest newsletter using title, description, image_url, and url from paginated list_trends responses.
  • Analyze trend velocity by comparing score values across articles retrieved with get_trend for a given category.
  • Extract and index full article body text from get_trend for keyword or topic modeling across multiple trend categories.
  • Map content hierarchies using the breadcrumb array from get_trend to understand how articles nest within TrendHunter's taxonomy.
  • Aggregate author attribution from get_trend to identify which contributors cover specific trend topics most frequently.
  • Build a category browser that surfaces trend_label tags from list_trends to let users filter and explore related articles.
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 TrendHunter have an official developer API?+
TrendHunter does not publish a public developer API. There is no documented REST or GraphQL interface available to third-party developers on their site.
What does the `list_trends` endpoint return for each trend, and can I filter by date?+
Each trend object in the trends array includes slug, title, subtitle, date, trend_label, description, image_url, and url. The endpoint does not currently support filtering by date range — it returns results as ordered by TrendHunter's category pages. You can iterate pages using the page parameter to retrieve older content.
What does the `score` field in `get_trend` represent?+
The score field is an integer from 0 to 100 representing the article's popularity percentage as assigned by TrendHunter. It reflects the article's standing relative to other content on the site, not an external engagement metric.
Does the API support searching for trends by keyword rather than browsing by category?+
Not currently. The API covers category-based listing via list_trends and individual article retrieval via get_trend. Keyword search across TrendHunter's content is not exposed. You can fork this API on Parse and revise it to add a search endpoint.
Are trend comments, user reactions, or related article links available from these endpoints?+
Not currently. The get_trend endpoint returns article-level fields — body text, author, score, breadcrumb, category, image, and description — but does not include comment threads, user reactions, or related article references. You can fork this API on Parse and revise it to add those fields.
Page content last updated . Spec covers 2 endpoints from trendhunter.com.
Related APIs in News MediaSee all →
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.
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.
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.
sneakernews.com API
Browse the latest sneaker news, search articles by keyword, and look up upcoming release dates — including pricing, images, and retailer links. Also surfaces per-page ad slot inventory and density metrics for programmatic and publisher analysis.
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.
highlight.xyz API
Discover trending NFT collections, search for specific projects, and view detailed collection information including top collectors and sponsors on Highlight.xyz. Find related projects and stay informed on what's gaining momentum in the NFT market.
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.
culturetrip.com API
Discover travel inspiration and plan your next adventure by browsing curated travel articles, destination guides, and bookable trips organized by region and city. Search for specific destinations, compare trip dates and prices, and explore popular cities to find the perfect getaway.