GET /v1/artists/41eb/albums

200



Event Log

# Payload
1
GET /v1/artists/41eb/albums HTTP/1.1
Host: application

2
SQL Query
SELECT name FROM artists WHERE external_id = $1 [41eb]
3
SQL Result
Rows returned: 1
4
GET /albums?artist=41eb HTTP/1.1
Host: albums.com

5
HTTP/1.1 200 OK
Content-Length: 34
Content-Type: application/json

{
    "albums": [
        {
            "name": "Entheogen"
        }
    ]
}
6
HTTP/1.1 200 OK
Connection: close
Content-Type: application/json; charset=utf-8

{
    "artist": {
        "name": "Sika Redem"
    },
    "albums": [
        {
            "title": "Entheogen"
        }
    ]
}