Discover/Sneaker News API
live

Sneaker News APIsneakernews.com

Access Sneaker News articles, upcoming release dates, retailer links, and ad slot inventory via 5 structured API endpoints. Search by keyword, paginate releases.

Endpoint health
verified 2d ago
search_articles
get_sneaker_release_dates
get_latest_news
get_ad_slot_inventory
get_article_detail
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Sneaker News API?

The Sneaker News API covers 5 endpoints that expose article feeds, full article content, keyword search, sneaker release calendars, and per-page ad slot analysis from sneakernews.com. The get_sneaker_release_dates endpoint returns structured release objects including SKU, retail price, image, and release date, while get_article_detail surfaces full article text alongside product metadata and retailer "Where to Buy" links when available.

Try it

No input parameters required.

api.parse.bot/scraper/526a14ee-2ed7-402e-b011-dc2d83aa0d9b/<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/526a14ee-2ed7-402e-b011-dc2d83aa0d9b/get_latest_news' \
  -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 sneakernews-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: Sneaker News SDK — browse latest drops, search articles, check releases."""
from parse_apis.sneaker_news_api import SneakerNews, ArticleNotFound

client = SneakerNews()

# List the latest homepage articles and print trending ones
for article in client.articlesummaries.list(limit=3):
    print(article.title, article.hot_score)

# Search for Jordan articles and drill into the first result's full detail
summary = client.articlesummaries.search(query="jordan", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.title, detail.author, detail.publish_date)
    print(detail.content[:200])

# Browse upcoming sneaker releases
for release in client.sneakerreleases.list(limit=5):
    print(release.name, release.release_date, release.price)

# Fetch a full article directly by URL and handle not-found
try:
    full = client.articles.get(url="https://sneakernews.com/2026/06/10/travis-scott-nike-total-90-collection/")
    print(full.title, full.author)
    for retailer in full.where_to_buy:
        print(retailer.retailer, retailer.link)
except ArticleNotFound as exc:
    print(f"Article gone: {exc.url}")

# Analyze ad density on the homepage
inventory = client.adslotinventories.analyze(url="https://sneakernews.com")
print(inventory.total_ad_slots, inventory.ad_density, inventory.page_type)

print("exercised: articlesummaries.list / articlesummaries.search / details / articles.get / sneakerreleases.list / adslotinventories.analyze")
All endpoints · 5 totalmissing one? ·

Get latest sneaker news articles from the homepage. Returns articles sorted by recency with engagement scores. No pagination — returns the current homepage set (typically 5-10 articles).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "articles": "array of article objects with title, url, excerpt, author, publish_date, categories, thumbnail, hot_score"
  },
  "sample": {
    "data": {
      "articles": [
        {
          "url": "https://sneakernews.com/2026/06/10/adidas-climacool-cooling-innovations-world-cup/",
          "title": "adidas Delivers Full-Length Cooling With The Climacool System",
          "author": "Matt Varga",
          "excerpt": "The Climacool family has taken a circuitious route to the current moment.",
          "hot_score": "179",
          "thumbnail": "https://sneakernews.com/wp-content/uploads/2026/06/adidas-climacool-cooling-innovations-world-cup-7.jpg?w=540&h=380&crop=1",
          "categories": [],
          "publish_date": "3 hours"
        }
      ]
    },
    "status": "success"
  }
}

About the Sneaker News API

Article Data

The get_latest_news endpoint returns the homepage article feed as an array of article objects, each including title, url, excerpt, author, publish_date, categories, thumbnail, and a hot_score engagement signal. The search_articles endpoint accepts a required query string — supporting multi-word phrases like nike dunk or jordan retro — and an optional page integer for paginating through results. Both endpoints return the same article object shape, making it straightforward to merge results from different sources.

Article Detail and Product Metadata

get_article_detail takes a full article URL and returns the complete article content, subtitle, publish_date, and author, plus two product-specific fields: product_info (an object containing keys like SKU, RETAIL PRICE, and RELEASE DATE when the article covers a specific release) and where_to_buy (an array of retailer objects each with a retailer name and link URL). Both product_info and where_to_buy may be empty for editorial or non-product articles.

Release Calendar

get_sneaker_release_dates returns paginated release objects with name, url, release_date, sku, price, and image. The page parameter controls pagination for both upcoming and past releases. This endpoint is the primary source for structured release schedule data without needing to parse individual article pages.

Ad Slot Analysis

get_ad_slot_inventory accepts a full sneakernews.com url and returns a detailed breakdown of ad presence on that page. Response fields include total_ad_slots, above_fold_count, sticky_unit_count, ad_density (rated low, medium, or high), word_count, ad_slots_per_1000_words, a full_slot_inventory array with per-slot metadata (id, slot_name, atf, sticky, approx_vertical_pos, timing), and a reader_experience_risk array of indicator strings. The page_type field distinguishes between home and post pages.

Reliability & maintenanceVerified

The Sneaker News API is a managed, monitored endpoint for sneakernews.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sneakernews.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 sneakernews.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
2d ago
Latest check
5/5 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
  • Build a sneaker release calendar app using get_sneaker_release_dates fields like release_date, price, and image.
  • Monitor editorial coverage of specific brands or silhouettes by running search_articles with keyword queries like air max or yeezy.
  • Enrich a sneaker database with SKU, retail price, and retailer links pulled from get_article_detail's product_info and where_to_buy fields.
  • Track hot_score values across the get_latest_news feed to identify trending articles for social amplification workflows.
  • Audit ad density and above-the-fold ad counts on article pages using get_ad_slot_inventory for publisher competitive analysis.
  • Aggregate release date and pricing data from multiple sneaker outlets, using sku as a cross-reference key.
  • Feed where_to_buy retailer links into a price-comparison tool for newly announced sneaker drops.
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 Sneaker News have an official developer API?+
No. Sneaker News does not publish a public developer API or documented data feed. This Parse API is the structured way to access its article and release data programmatically.
What does `get_article_detail` return for articles that aren't about a specific sneaker release?+
For editorial, opinion, or general news articles, product_info returns an empty object and where_to_buy returns an empty array. The core fields — title, author, content, publish_date, and subtitle — are always present regardless of article type.
Does the release dates endpoint include resale or secondary market pricing?+
No. get_sneaker_release_dates returns the price field reflecting retail pricing as listed on the release page — not resale or aftermarket values. Secondary market price tracking is not currently covered by this API. You can fork it on Parse and revise to add an endpoint targeting resale data sources.
Can I filter `get_latest_news` results by category or brand?+
Not currently. get_latest_news returns the full homepage feed with categories included in each article object, but the endpoint takes no filter parameters. You can fork it on Parse and revise to add category or brand filtering as an input parameter.
How granular is the ad slot data from `get_ad_slot_inventory`?+
Each entry in full_slot_inventory includes a slot id, slot_name, a boolean atf flag for above-the-fold placement, a sticky flag for adhesion units, an approx_vertical_pos value, and a timing field. The top-level ad_density field summarizes the page as low, medium, or high, and reader_experience_risk lists any detected risk indicators in plain strings.
Page content last updated . Spec covers 5 endpoints from sneakernews.com.
Related APIs in News MediaSee all →
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.
footlocker.com API
Access product listings, pricing, availability, customer reviews, release calendars, and category/brand browsing data from Foot Locker.
finishline.com API
Search and browse Finish Line's sneaker catalog, get detailed product information with pricing and availability, check upcoming sneaker releases, and find nearby store locations. Access product suggestions and inventory data across Finish Line's full product listing to compare options and track release dates.
on.com API
Access data from on.com.
kixify.com API
Search and compare sneaker listings across Kixify.com to find the best prices, condition ratings, and seller options for specific models and sizes. Filter by brand, condition, and availability to view detailed product information, seller profiles, and complete size-price matrices all in one place.
prnewswire.com API
Access the latest press releases, earnings announcements, and news from PR Newswire across specific categories and organizations, with options to search by keywords or dates. Filter releases by industry, company newsrooms, and subscribe to RSS feeds for real-time updates on corporate news and financial disclosures.
nike.com API
Search the Nike product catalog by keyword and retrieve detailed product information including pricing, sizing, color variants, and availability. Use autocomplete suggestions to refine queries and discover relevant products on Nike.com.
supremenewyork.com API
Access Supreme product previews, news articles, lookbooks, store locations, and live shop status. Retrieve seasonal collections with variant and inventory details, browse editorial content, and check webstore availability in real time.