Giving YOU the power to speak in songs!
This API is designed to help you gather your own Spotify songs. You can use it to generate songs for any text, whether it's a song lyric, a quote, or a phrase.
To use the API, you need to generate an API key. This key will be used to authenticate your requests. You can generate an API key by clicking the button below.
API Keys are valid for 30 days.
Try it yourself 👇
FAQs
Request:
1curl --location --request POST \
2'https://dev.speakinsongs.com/api/v1/songs' \
3--header 'X-API-KEY: <YOUR_API_KEY>' \
4--header 'Content-Type: application/json' \
5--data '{
6 "words": ["hello", "world", "dog"]
7}'
Response:
1{
2 songs:
3 [
4 {
5 "input": "hello",
6 "song_name": "Hello",
7 "spotify_song_id": <SPOTIFY_SONG_ID>,
8 "spotify_song_urls": {
9 "spotify": <SPOTIFY_SONG_URL>,
10 },
11 "artists": [ ... ]
12 "images": [ ... ]
13 "popularity": <SONG_POPULARITY>,
14 },
15 ...
16 ]
17}
FAQs