# Song Details

### Song details by link

```bash
https://jiosaavn-whollyapi.vercel.app/songs?link=https://www.jiosaavn.com/song/thunderclouds/RT8zcBh9eUc
```

CURL

```bash
curl -X GET 'https://jiosaavn-whollyapi.vercel.app/songs?link=https://www.jiosaavn.com/song/thunderclouds/RT8zcBh9eUc' \
 -H 'content-type: application/json'
```

| Query Paramter | Description                           | Required |
| -------------- | ------------------------------------- | -------- |
| link           | Song link from <https://jiosaavn.com> | True     |

### Song details by song ID

```bash
https://jiosaavn-whollyapi.vercel.app/songs?id=5WXAlMNt
```

CURL

```bash
curl -X GET 'https://jiosaavn-whollyapi.vercel.app/songs?id=5WXAlMNt' \
 -H 'content-type: application/json'
```

#### Multiple IDs

You can also pass multiple comma separated song IDs in a single request.

```bash
https://jiosaavn-whollyapi.vercel.app/songs?id=5WXAlMNt,csaEsVWV
```

CURL

```bash
curl -X GET 'https://jiosaavn-whollyapi.vercel.app/songs?id=5WXAlMNt,csaEsVWV
' \
 -H 'content-type: application/json'
```

| Query Paramter | Description | Required |
| -------------- | ----------- | -------- |
| id             | Song ID     | True     |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sh20raj.gitbook.io/whollyapi/websites/jio-saavn/details/song-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
