Discover/Duckdns API
live

Duckdns APIdshdaaf.duckdns.org

Access BP's full music label catalog via API. Returns label names, slugs, release counts, and sync timestamps in a single paginated response.

This API takes change requests — .
Endpoint health
verified 2d ago
list_catalog
1/1 passing latest checkself-healing
Endpoints
1
Updated
16d ago

What is the Duckdns API?

The BP Music Catalog API exposes 5 fields per label record — id, name, slug, last_synced, and release_count — across the complete catalog in a single call. The list_catalog endpoint returns all labels at once with a top-level total count, making it straightforward to build label directories, audit sync status, or track how many releases each label has in the system.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/f4c270a6-ce63-4369-bd3b-26e2a4b1cc96/<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/f4c270a6-ce63-4369-bd3b-26e2a4b1cc96/list_catalog' \
  -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 dshdaaf-duckdns-org-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: BP Catalog SDK — bounded, re-runnable; every call capped."""
from parse_apis.dshdaaf_duckdns_org_api import BPCatalog, ParseError

client = BPCatalog()

# List all labels in the catalog, capped at 5 for demonstration.
for label in client.labels.list(limit=3):
    print(label.name, label.release_count, label.slug)

# Grab the first label for inspection.
first = client.labels.list(limit=1).first()
try:
    detail = client.labels.list(limit=1).first()
    print(detail.name, detail.id, detail.last_synced)
except ParseError as e:
    print(f"error: {e.code}")

print("exercised: labels.list")
All endpoints · 1 totalmissing one? ·

Retrieve all music labels in the catalog. Each label includes its name, slug, last sync timestamp, and total release count. Results are returned in a single page (the source provides all labels in one response).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of label objects with id, name, slug, last_synced, and release_count",
    "total": "total number of labels returned"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "131706",
          "name": "1001 Recordings",
          "slug": "1001-recordings",
          "last_synced": "2026-07-23T18:55:43.997Z",
          "release_count": 15
        },
        {
          "id": "56958",
          "name": "Afterlife Records",
          "slug": "afterlife-records",
          "last_synced": "2026-07-23T18:55:46.143Z",
          "release_count": 112
        }
      ],
      "total": 63
    },
    "status": "success"
  }
}

About the Duckdns API

What the API Returns

The single list_catalog endpoint returns the full BP music label catalog in one response. Each object in the items array includes a unique id, a human-readable name, a URL-friendly slug, a last_synced timestamp indicating when the label's data was last updated, and a release_count integer showing how many releases are associated with that label. A top-level total field confirms the number of label records returned.

Endpoint Behavior

list_catalog takes no input parameters. The response always includes the complete set of labels — there is no cursor, offset, or page parameter. This means one request is sufficient to retrieve the entire label index, which is useful for local caching or bulk processing workflows.

Data Shape and Coverage

The response is flat: one array of label objects, each self-contained. The last_synced field is useful for detecting stale labels or building incremental sync logic on the client side. The release_count reflects the total releases attributed to each label in the catalog, not filtered by date, format, or genre.

Reliability & maintenanceVerified

The Duckdns API is a managed, monitored endpoint for dshdaaf.duckdns.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dshdaaf.duckdns.org 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 dshdaaf.duckdns.org 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
1/1 endpoint 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 searchable label directory using name and slug fields from list_catalog
  • Monitor sync freshness by sorting labels by last_synced timestamp
  • Rank labels by release volume using the release_count field
  • Detect labels with zero releases to flag inactive catalog entries
  • Populate a label autocomplete or lookup tool using id and name pairs
  • Export a full label inventory for offline analysis or reporting
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does BP have an official developer API?+
BP does not publish a public developer API or documentation for external access to its catalog data.
What does list_catalog actually return for each label?+
Each label object in the items array includes five fields: id (unique identifier), name (display name), slug (URL-safe string), last_synced (timestamp of the most recent data update for that label), and release_count (total number of releases attributed to the label). A top-level total field gives the count of all labels in the response.
Does the API support filtering or searching labels by name, genre, or release count?+
No filtering or query parameters are available on list_catalog — it always returns the full label set. You can apply filters client-side after retrieving the full response. You can fork this API on Parse and revise it to add a filtered or search endpoint.
Are individual releases, tracks, or artists available through this API?+
Not currently. The API covers label-level metadata only: name, slug, last_synced, and release_count. Individual release records, track listings, and artist data are not exposed. You can fork it on Parse and revise to add the missing endpoints.
How fresh is the data returned by list_catalog?+
Each label object includes a last_synced timestamp that reflects when that label's record was last updated. This lets you assess data freshness per label, but the API does not expose a changelog or diff — you would need to compare successive responses to detect what changed.
Page content last updated . Spec covers 1 endpoint from dshdaaf.duckdns.org.
Related APIs in MusicSee all →
api.discogs.com API
Search and browse millions of music releases, artists, and labels to discover tracklists, formats, ratings, and complete discography information. Instantly access detailed release data including community feedback to build your music knowledge and collections.
qobuz.com API
Search and browse millions of songs, albums, and artists on Qobuz to discover new music, explore charts, and access detailed information about tracks and performers. Explore curated new releases and trending charts to stay updated with the latest music across all genres.
spotify.com API
Search millions of songs and artists in Spotify's catalog, then dive deep into any artist's complete discography, top tracks, fan statistics, and similar artists they're connected to. Perfect for discovering new music, researching artist backgrounds, or building personalized music recommendations.
traxsource.com API
Access Traxsource's music catalog to browse top tracks and singles, explore genres, search for music, and discover newly added releases and artist discographies. Get detailed information about specific tracks, releases, and artists to find the music you're looking for.
repertoire.bmi.com API
Search for music writers and composers to discover their complete songview catalog directly from BMI's repertoire database. Find detailed information about songs, compositions, and musical works created by your favorite artists and industry professionals.
musicbrainz.org API
Search MusicBrainz for artists and recordings, then fetch detailed metadata for artists, recordings, releases, and release groups, including credits, tags/genres, and track listings.
metal-archives.com API
Search and explore music data including bands, albums, songs, and lyrics, with the ability to discover artist recommendations, view band members and discographies, and look up record label information. Get detailed information about musicians, their releases, and recommendations based on your musical interests.
albumoftheyear.org API
Search for music albums and discover their release dates, genres, and record labels, while browsing the best-rated and newest releases from across the music industry. Find detailed information about any album to stay updated on new music and make informed decisions about what to listen to next.