1. Radio Tracking & Audio Utilities

Radio airplay tracking, station discovery, platform URL resolution, and audio file import/export utilities.

  • Chema Rodriguez
    Author
    by Chema Rodriguez
    2 months ago
  • Radio Airplay Tracking

    Group 17 provides comprehensive radio monitoring tools. Track when and where an artist's music is being played on radio stations worldwide.


    Tool: get_radios

    Description: Lists all radio stations tracked in the global database. Filter by country and station name to discover which stations are available for monitoring.

    {\n  "countryCode": "US",\n  "name": "power"\n}

    Tool: get_artist_radio_spins

    Description: Returns detailed radio spin data — a timeline of every time an artist's tracks were broadcast, including which station, which track, and when. Essential for radio campaign tracking and market penetration analysis.

    {\n  "uuid": "artist-uuid",\n  "countryCode": "MX",\n  "startDate": "2026-06-01",\n  "endDate": "2026-07-01",\n  "limit": 100\n}

    Tool: get_artist_radio_stats

    Description: Aggregated radio statistics — total spin counts per station for an artist. Use this to identify which stations are supporting the artist most heavily.

    {\n  "uuid": "artist-uuid",\n  "countryCode": "ES",\n  "startDate": "2026-01-01"\n}



    Platform Resolution & Audio Utilities


    Tool: resolve_platform_url

    Description: Resolves a public platform URL (Spotify, Apple Music, etc.) into the corresponding Chatmu database identifier. Paste any music URL and get back the resolved entity UUID and type.

    {\n  "url": "https://open.spotify.com/artist/..."\n}

    Tool: import_external_audio

    Description: Imports an external audio file (MP3/WAV) from a public URL into Chatmu's internal storage for further processing.

    {\n  "external_url": "https://example.com/track.mp3",\n  "file_name": "my-track.mp3"\n}

    Tool: delete_external_audio

    Description: Deletes a previously imported audio file from internal storage.

    {\n  "file_url": "https://storage.chatmu.io/..."\n}