API Documentation

Welcome to the Titchuke Music developer documentation. Use our URL-based API to interact with public music data.

Authentication

Our public API endpoints are currently open for use and do not require an API key. You can directly access the endpoints without any authentication headers or keys.

This allows for easy integration for public-facing data, such as embedding song details on your own website or creating shareable links.

Endpoints

Our API is based on simple GET requests using URL parameters to specify the desired resource.

Display Music Details Page

This endpoint renders a full HTML page for a specific song, including its poster, title, artist, stats, and an audio player.

Request

GET /music-details.html?id={songId}

Parameters

Parameter Type Description
id String Required. The unique identifier for the song, which can be found in the song link.

Example

To get the details page for a song with the ID someSongId123, you would use the following URL:

https://[your-domain.com]/music-details.html?id=someSongId123

Response

The server will respond with an HTML document (Content-Type: text/html) that renders the song's detail page in the browser.

Future Development

We are continuously working to improve our platform. In the future, we may introduce a more comprehensive JSON-based REST API for advanced integrations. Stay tuned for updates!