Get all songs

GET /songs

Responses

  • 500

    Internal Server Error

  • 200

    Success response

    Hide response attributes Show response attributes array[object]
    • song_id integer
    • title string
    • album_id integer
GET /songs
curl \
 -X GET https://taylor-swift-api.sarbo.workers.dev/songs
Response examples (200)
[
  {
    "song_id": 42,
    "title": "string",
    "album_id": 42
  }
]
Response examples (200)
[
  {
    "song_id": 42,
    "title": "string",
    "album_id": 42
  }
]