14 lines
435 B
Plaintext
14 lines
435 B
Plaintext
raw_data = async {
|
|
{
|
|
cast = (download "https://api.sampleapis.com/futurama/cast")
|
|
characters = (download "https://api.sampleapis.com/futurama/characters")
|
|
episodes = (download "https://api.sampleapis.com/futurama/episodes")
|
|
}
|
|
}
|
|
|
|
cast_len = (length (from_json data:cast))
|
|
characters_len = (length (from_json data:characters))
|
|
episodes_len = (length (from_json data:episodes))
|
|
|
|
(output [cast_len, characters_len, episodes_len])
|