fadr.com APIfadr.com ↗
Access Fadr's public music data via API: browse remix packs, fetch audio asset metadata (tempo, key, stems), and retrieve active contest details.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/b05a61a8-1ee5-40c8-ad68-dd46866c7982/get_packs' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all available remix packs (library categories). Each pack contains a collection of licensed songs or loops organized by genre/theme.
No input parameters required.
{
"type": "object",
"fields": {
"packs": "array of pack objects with id, name, description, thumbnail_id, and asset_ids",
"total": "integer"
},
"sample": {
"packs": [
{
"id": "63b4fd2c639f3c22b8ed6f0d",
"name": "Demo Songs",
"asset_ids": [
"6338a399b373d30059cfd1f3",
"6339bb7ab373d30059d069f3",
"6339bb78b373d30059d069ce"
],
"description": "A library of licensed songs for mashups and remixes.",
"thumbnail_id": "63bca6617bbb3dda2f139727"
}
],
"total": 25
}
}About the fadr.com API
The Fadr API exposes 4 endpoints covering the platform's public music library, including remix packs, individual audio assets, and remix contests. The get_asset endpoint returns per-track metadata fields such as tempo, key, sample rate, stems, MIDI IDs, and engagement counts. You can enumerate the full public catalog through get_public_assets or navigate curated collections through get_packs, making it straightforward to inventory Fadr's licensed audio content programmatically.
Remix Packs and Public Asset Catalog
The get_packs endpoint returns every remix pack on Fadr — each object includes a pack id, name, description, thumbnail_id, and an asset_ids array you can use to drill into individual tracks. Packs are organized by genre and theme, so iterating them gives you a structured map of the library. get_public_assets returns the full flat list of public content with a total count, per-asset file_type, asset_type, engagement counts, and the same metadata block (tempo, key, sample_rate, source_type) as the detail endpoint.
Individual Asset Detail
Once you have an asset ID — a 24-character hex string like 63bca6617bbb3dda2f139727, obtainable from get_packs — get_asset returns the complete record for that asset. The response includes midi (array of MIDI IDs), stems (array of stem IDs), tags, listed and public boolean flags, and the metadata object with tempo, key, sample_rate, and source_type. This is the primary endpoint for building per-track detail pages or audio analysis pipelines.
Contests
The get_contests endpoint returns all remix contests on the platform. Each contest object includes id, name, slug, description, a collaborators list (artist names/handles), start and end dates, and external links including SoundCloud references. The total field gives the count of active and past contests. This endpoint is useful for monitoring new contest announcements or tracking which artists are running campaigns on the platform.
- Build a remix pack browser that displays pack names, descriptions, and track lists sourced from
get_packs. - Construct a BPM/key index of Fadr's public catalog using the
metadata.tempoandmetadata.keyfields fromget_public_assets. - Monitor new remix contests and collaborating artists by polling
get_contestsfor updateddatesandcollaborators. - Fetch stem and MIDI availability for a specific track using
get_assetto determine whether a song has multitrack components. - Aggregate tag frequency across all public assets to identify genre trends on the platform.
- Sync contest SoundCloud links from
get_contestsinto a playlist or notification system. - Filter public assets by
file_typeorasset_typeto locate loops, stems, or full tracks separately.
| 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 Fadr have an official public developer API?+
What does `get_asset` return beyond basic metadata?+
get_asset returns midi (an array of MIDI IDs associated with the track), stems (an array of stem IDs), tags, listed and public boolean flags, user_id, file_type, and a metadata object containing tempo, key, sample_rate, and source_type. It does not return direct download URLs or waveform data — those fields are not exposed.Can I retrieve assets belonging to a specific user or filter by genre?+
get_public_assets or get_packs by user, genre, or tag. The endpoints return full unfiltered lists. You can fork this API on Parse and revise it to add a filtered endpoint that accepts query parameters for those fields.Does the API expose audio file download URLs or streaming links?+
get_asset and get_public_assets return metadata fields like file_type, tempo, and stems arrays, but no direct audio URLs or CDN links. You can fork this API on Parse and revise it to add an endpoint that resolves asset IDs to playback or download URLs if that surface becomes available.How are asset IDs obtained for use with `get_asset`?+
get_asset requires a 24-character hex asset_id. These IDs appear in the asset_ids arrays returned by get_packs, and also in the assets array returned by get_public_assets. Collect them from either of those endpoints before calling get_asset.