Discover/soundboost.ai API
live

soundboost.ai APIsoundboost.ai

Access SoundBoost blog posts on music production, mastering, and audio engineering, plus current membership pricing plans via 3 structured endpoints.

Endpoints
3
Updated
3h ago
Try it
Filter posts by category name (case-insensitive). Known categories: 'Tips / Tricks', 'News
api.parse.bot/scraper/82f8895f-a1a3-4150-b35f-4b3665850658/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/82f8895f-a1a3-4150-b35f-4b3665850658/get_blog_posts' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Retrieve all blog posts from SoundBoost. Optionally filter by category. Returns post metadata including title, excerpt, author, date, and featured image URL.

Input
ParamTypeDescription
categorystringFilter posts by category name (case-insensitive). Known categories: 'Tips / Tricks', 'News from SoundBoost', 'Artist Spotlight'. Omitting returns all posts.
Response
{
  "type": "object",
  "fields": {
    "posts": "array of blog post summaries",
    "total": "integer count of returned posts"
  },
  "sample": {
    "posts": [
      {
        "id": 391,
        "date": "2025-12-28T17:07:33",
        "slug": "track-vs-stem-why-the-difference-still-matters",
        "title": "Track vs Stem: Why the Difference Still Matters",
        "author": "Ufuk Önen",
        "excerpt": "<p>“Can you do stem mastering if I send you the tracks?”...</p>",
        "category": "Tips / Tricks",
        "modified": "2025-12-28T17:17:23",
        "featured_image": "https://primary-production-2608.up.railway.app/wp-content/uploads/2025/12/soundbooststemsplitter.jpg"
      }
    ],
    "total": 26
  }
}

About the soundboost.ai API

The SoundBoost API covers 3 endpoints that expose the site's blog content and subscription pricing. The get_blog_posts endpoint returns a filterable list of articles on music production, mastering, and audio engineering, including titles, excerpts, author names, publication dates, and featured image URLs. get_blog_post returns the full HTML content and metadata for a single article by slug, while get_pricing delivers current plan details for Pro and Unlimited tiers.

Blog Post Listing

The get_blog_posts endpoint returns an array of post summaries plus a total count. Each entry includes title, excerpt, author, date, and the featured image URL. You can narrow results using the optional category parameter — known categories include Tips / Tricks and News from SoundBoost — and matching is case-insensitive. This endpoint is suited for building article indexes, content feeds, or monitoring when new posts appear.

Single Post Detail

get_blog_post accepts a required slug parameter (for example, track-vs-stem-why-the-difference-still-matters) and returns the full content field as an HTML string alongside title, author, date, modified, category, tags (an array of strings), excerpt, and the integer id. The modified field lets you detect edits after initial publication. Slugs for available posts can be discovered from the listing endpoint.

Pricing Plans

get_pricing takes no inputs and returns a plans array. Each plan object includes the tier name, current price, original (pre-discount) price, and credit allocation. This is useful for surfacing current SoundBoost plan options in comparison tools or tracking price changes over time without manual checks.

Common use cases
  • Build a music production content feed filtered to the 'Tips / Tricks' category using get_blog_posts.
  • Detect edits to existing SoundBoost articles by comparing the modified field from get_blog_post over time.
  • Index SoundBoost article tags and authors to analyze content themes across the blog.
  • Track SoundBoost subscription price changes by periodically polling get_pricing and logging plan prices.
  • Render full article content on a custom dashboard by fetching HTML from get_blog_post using discovered slugs.
  • Monitor when SoundBoost publishes new posts in the 'News from SoundBoost' category by watching the total count.
  • Compare SoundBoost Pro and Unlimited plan credit allocations and original vs. current prices for a pricing comparison page.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 SoundBoost have an official developer API?+
SoundBoost does not publish a documented public developer API. This Parse API is the structured way to access its blog and pricing data programmatically.
What does `get_blog_post` return beyond what the listing endpoint provides?+
get_blog_post adds the full content field (complete HTML of the article body), a tags array, the integer id, and a modified ISO datetime indicating the last edit. The listing endpoint returns only summary fields: title, excerpt, author, date, and featured image URL.
Does the API expose individual audio processing jobs, user accounts, or stem-splitting results from SoundBoost?+
Not currently. The API covers blog post content and subscription pricing only. You can fork it on Parse and revise it to add an endpoint targeting that data if it becomes accessible.
Are there pagination controls for `get_blog_posts`?+
The endpoint does not currently expose pagination parameters like page number or limit. It returns all posts matching the optional category filter in a single response alongside the total count. You can fork the API on Parse and revise it to add pagination inputs if the volume of posts makes that necessary.
Can I retrieve posts by author or by tag using the existing endpoints?+
Filtering by author or tag is not currently supported. get_blog_posts accepts only a category filter. Individual post tags are available in the tags array from get_blog_post, so you could fetch posts via the listing endpoint and filter client-side by tag. You can also fork the API on Parse and revise it to add a dedicated tag or author filter parameter.
Page content last updated . Spec covers 3 endpoints from soundboost.ai.