soundboost.ai APIsoundboost.ai ↗
Access SoundBoost blog posts on music production, mastering, and audio engineering, plus current membership pricing plans via 3 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/82f8895f-a1a3-4150-b35f-4b3665850658/get_blog_posts' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve all blog posts from SoundBoost. Optionally filter by category. Returns post metadata including title, excerpt, author, date, and featured image URL.
| Param | Type | Description |
|---|---|---|
| category | string | Filter posts by category name (case-insensitive). Known categories: 'Tips / Tricks', 'News from SoundBoost', 'Artist Spotlight'. Omitting returns all posts. |
{
"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.
- 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
modifiedfield fromget_blog_postover time. - Index SoundBoost article tags and authors to analyze content themes across the blog.
- Track SoundBoost subscription price changes by periodically polling
get_pricingand logging plan prices. - Render full article content on a custom dashboard by fetching HTML from
get_blog_postusing discovered slugs. - Monitor when SoundBoost publishes new posts in the 'News from SoundBoost' category by watching the
totalcount. - Compare SoundBoost Pro and Unlimited plan credit allocations and original vs. current prices for a pricing comparison page.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does SoundBoost have an official developer API?+
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?+
Are there pagination controls for `get_blog_posts`?+
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?+
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.