Discover/airbit.com API
live

airbit.com APIairbit.com

Access Airbit beat listings, top charts, producer catalogs, and featured playlists via a structured API. Filter by genre, BPM, mood, key, and price.

Endpoints
5
Updated
14d ago
Try it
JSON object with min/max BPM (e.g. '{"min":120,"max":160}').
JSON array of musical keys (e.g. '["C min","D maj"]').
Page number for pagination.
JSON array of tag strings (e.g. '["future","drake"]').
JSON array of mood aliases (e.g. '["dark","chill"]').
JSON object with min/max price (e.g. '{"min":10,"max":50}').
JSON array of genre aliases (e.g. '["hip-hop","trap"]').
JSON object with min/max duration in seconds (e.g. '{"min":60,"max":240}').
Only return beats with exclusive licenses available.
Only return beats from pro sellers.
Only return beats available for free download.
api.parse.bot/scraper/67696d42-9ee1-40ed-8902-73cd6cb0afd5/<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 POST 'https://api.parse.bot/scraper/67696d42-9ee1-40ed-8902-73cd6cb0afd5/search_beats' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "page": "1",
  "genres": [
    "hip-hop"
  ]
}'
All endpoints · 5 totalclick to expand

Search for beats with various filters including genres, moods, tags, BPM range, price range, and duration. Returns paginated results sorted by relevance. Keyword search is not supported; use filters instead.

Input
ParamTypeDescription
bpmstringJSON object with min/max BPM (e.g. '{"min":120,"max":160}').
keysstringJSON array of musical keys (e.g. '["C min","D maj"]').
pageintegerPage number for pagination.
tagsstringJSON array of tag strings (e.g. '["future","drake"]').
moodsstringJSON array of mood aliases (e.g. '["dark","chill"]').
pricestringJSON object with min/max price (e.g. '{"min":10,"max":50}').
genresstringJSON array of genre aliases (e.g. '["hip-hop","trap"]').
durationstringJSON object with min/max duration in seconds (e.g. '{"min":60,"max":240}').
exclusiveOnlybooleanOnly return beats with exclusive licenses available.
proSellersOnlybooleanOnly return beats from pro sellers.
freeDownloadOnlybooleanOnly return beats available for free download.
Response
{
  "type": "object",
  "fields": {
    "data": "array of beat objects with id, name, alias, bpm, key, duration, genre, pricing, user info, artwork, and streaming URLs",
    "paginatorInfo": "object with total, hasMorePages, currentPage, count, lastPage, perPage"
  },
  "sample": {
    "data": {
      "data": [
        {
          "id": "3243931",
          "bpm": 94,
          "key": "C♯ maj / D♭ maj",
          "name": "GREATEST - BUY 1 GET 4 FREE",
          "alias": "greatest-buy-1-get-4-free",
          "genre": {
            "id": "32",
            "name": "Hip Hop",
            "alias": "hip-hop"
          },
          "duration": "03:03",
          "playCount": 1963,
          "isForFreeDownload": true
        }
      ],
      "paginatorInfo": {
        "count": 20,
        "total": 10000,
        "perPage": 20,
        "lastPage": 500,
        "currentPage": 1,
        "hasMorePages": true
      }
    },
    "status": "success"
  }
}

About the airbit.com API

This API provides access to 5 endpoints covering the Airbit music marketplace, letting developers query beat listings, ranked charts, producer catalogs, and curated playlists. The search_beats endpoint accepts filters across genre, mood, BPM range, price, musical key, duration, and tags, returning paginated beat objects with full pricing, artwork, and streaming URL fields. Beat-level detail and producer-level browsing are both supported.

Beat Search and Detail

The search_beats endpoint accepts any combination of structured filter parameters — genres, moods, tags, keys, bpm, price, and duration — each passed as JSON objects or arrays. Results are paginated via the page parameter and include beat objects with fields such as id, name, alias, bpm, key, duration, genre, pricing, artwork, and streaming URLs. Note that keyword text search is not supported here; filtering must be done through the provided parameter types. The get_beat_details endpoint retrieves a single beat by its username and slug (as they appear in the marketplace URL), adding fields like plays, likes, tags, and moods not present in search results.

Charts and Producer Catalogs

The get_top_charts endpoint accepts a required alias parameter identifying which chart to retrieve — options include top-selling beats, top-earning producers, and similar ranked lists — along with an optional period of week, month, or all_time. Each chart entry includes a position and full beat or user details. The get_producer_beats endpoint takes a numeric user_id (obtainable from beat detail or chart responses) and returns the producer's full marketplace catalog, with an optional search keyword to filter within that catalog.

Playlists

The get_featured_playlists endpoint returns platform-curated playlists sorted by most recently updated. Each playlist object includes id, name, description, followsCount, itemCount, owner, and artwork. The limit and page parameters control how many results are returned per request. Playlists are Airbit-curated rather than user-generated, so the data reflects editorially selected collections.

Common use cases
  • Build a beat discovery tool that filters Airbit inventory by BPM range, genre, and mood for music producers.
  • Track weekly and monthly top-selling beats using the get_top_charts endpoint with the period parameter.
  • Aggregate a producer's full catalog by user ID to display their beats on a portfolio or profile page.
  • Monitor price ranges across genres by combining search_beats filters with the pricing field in responses.
  • Identify trending producers by querying the top-earning producers chart and extracting ranked user details.
  • Populate a playlist browser using get_featured_playlists with followsCount and itemCount metadata.
  • Cross-reference beat tags and moods from get_beat_details to build genre and mood taxonomy tooling.
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 Airbit have an official public developer API?+
Airbit does not publish a documented public developer API for third-party use. There is no official API portal or listed developer program on airbit.com as of this writing.
What does `get_beat_details` return that `search_beats` does not?+
get_beat_details returns additional per-beat fields including plays, likes, tags, moods, and full st (streaming track) details. The search_beats endpoint returns a broader set of beats with core metadata but omits engagement counts and tag/mood arrays. Use get_beat_details when you need the full record for a specific beat.
Can I do keyword text search across all beats?+
Keyword search is not supported in search_beats. That endpoint accepts only structured filters: genres, moods, tags, keys, bpm, price, and duration. Within a specific producer's catalog, get_producer_beats does accept a search keyword string to filter results.
Does the API expose beat licensing terms or contract details?+
The API returns pricing fields on beat objects, but detailed licensing terms, contract text, or lease-type breakdowns are not currently part of the response schema. The API covers beat pricing, metadata, and catalog structure. You can fork it on Parse and revise to add an endpoint targeting individual beat licensing detail pages.
How does pagination work across endpoints?+
Endpoints that return lists — search_beats, get_producer_beats, get_top_charts, and get_featured_playlists — all support a page integer parameter. Responses include a paginatorInfo object (or equivalent) with total, hasMorePages, currentPage, lastPage, perPage, and count fields so you can implement full paginated traversal.
Page content last updated . Spec covers 5 endpoints from airbit.com.
Related APIs in MusicSee all →
djmag.com API
Access the latest DJ and electronic music news, discover rankings of the world's top 100 DJs and clubs, view detailed club profiles, and search through DJ Mag's extensive article archive. Stay updated on the electronic music scene with curated features, news updates, and industry insights all in one place.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
aoni.co.jp API
Browse and search voice actors, actresses, and junior talents from Aoni Production with detailed profiles including audio samples and work history. Access company information, news updates, and booking details to discover Japanese voice acting talent.
merchbar.com API
Search and discover music merchandise across vinyls, CDs, apparel, and accessories, then track product details, new arrivals, and sales by artist. Find exactly what you're looking for with real-time product information and pricing updates.
amoeba.com API
Search and browse Amoeba Music's catalog of vinyl records and CDs, including used listings, to find product details and discover new releases. Check store information to plan your visits to Amoeba's physical locations.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.