TuneIn Playing.ashx API

The Playing.ashx API from TuneIn — 1 operation(s) for playing.ashx.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/tunein-playing-ashx-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

tunein-playing-ashx-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: TuneIn Streaming API (OPML/RadioTime) Playing.ashx API
  description: 'The TuneIn Streaming API (backed by opml.radiotime.com) provides access to TuneIn''s directory of internet radio stations, podcasts, sports audio, news, and music. Callers can browse categories, search for stations, describe specific stations or shows, and retrieve stream URLs for playback. Responses are available in OPML (XML) or JSON format. No authentication is required for the public streaming API.

    '
  version: 1.0.0
  contact:
    name: TuneIn Support
    url: https://help.tunein.com/
  x-unofficial-docs: https://tunein-api.corehacked.com/
servers:
- url: https://opml.radiotime.com
  description: TuneIn OPML / RadioTime public endpoint
tags:
- name: Playing.ashx
paths:
  /Playing.ashx:
    get:
      operationId: submitNowPlaying
      summary: Submit now-playing metadata for a station
      description: 'Submits real-time now-playing metadata (current song, artist, album, commercial flag) for a licensed broadcast station to TuneIn. Partners must include their partnerId and partnerKey credentials. Requests should be sent once per song start — duplicate or timer-based submissions within short timeframes may be blocked. Information may take up to 24 hours to appear on TuneIn.com.

        '
      parameters:
      - name: partnerId
        in: query
        description: 'Unique partner identifier issued by TuneIn upon broadcaster registration.

          '
        required: true
        schema:
          type: string
          example: myPartnerId
      - name: partnerKey
        in: query
        description: 'Partner authentication key issued by TuneIn alongside the partnerId.

          '
        required: true
        schema:
          type: string
          example: myPartnerKey
      - name: id
        in: query
        description: 'Station identifier assigned by TuneIn. Must be prefixed with "s" (e.g. s12345).

          '
        required: true
        schema:
          type: string
          pattern: ^s\d+
          example: s12345
      - name: title
        in: query
        description: Title of the currently playing song.
        required: true
        schema:
          type: string
          example: Bad Romance
      - name: artist
        in: query
        description: Name of the artist performing the currently playing song.
        required: true
        schema:
          type: string
          example: Lady Gaga
      - name: album
        in: query
        description: Album name for the currently playing song.
        required: false
        schema:
          type: string
          example: The Fame Monster
      - name: commercial
        in: query
        description: 'Set to true during non-song periods (e.g. advertisements, station IDs). When true, title and artist are not required.

          '
        required: false
        schema:
          type: boolean
          example: false
      responses:
        '200':
          description: 'Now-playing metadata successfully received. Information may take up to 24 hours to display on TuneIn.com.

            '
          content:
            text/plain:
              example: ok
        '400':
          description: 'Invalid request — missing or malformed required parameters.

            '
        '403':
          description: 'Authentication failure — invalid partnerId or partnerKey, or the station ID is not associated with the partner account.

            '
        '429':
          description: 'Request blocked due to duplicate or timer-based submission. Send updates only once per song start.

            '
      tags:
      - Playing.ashx