Welcome to the Titchuke Music developer documentation. Use our URL-based API to interact with public music data.
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.
Our API is based on simple GET requests using URL parameters to specify the desired resource.
This endpoint renders a full HTML page for a specific song, including its poster, title, artist, stats, and an audio player.
GET /music-details.html?id={songId}
| Parameter | Type | Description |
|---|---|---|
id |
String | Required. The unique identifier for the song, which can be found in the song link. |
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
The server will respond with an HTML document (Content-Type: text/html) that renders the song's detail page in the browser.
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!