2023-11-16 02:57:50 -05:00
|
|
|
cast = (download "https://api.sampleapis.com/futurama/cast")
|
|
|
|
characters = (download "https://api.sampleapis.com/futurama/characters")
|
|
|
|
episodes = (download "https://api.sampleapis.com/futurama/episodes")
|
2023-11-04 06:02:27 -04:00
|
|
|
|
2023-11-16 02:57:50 -05:00
|
|
|
cast_len = (length (from_json cast))
|
|
|
|
characters_len = (length (from_json characters))
|
|
|
|
episodes_len = (length (from_json episodes))
|
2023-11-04 06:02:27 -04:00
|
|
|
|
2023-11-05 13:54:29 -05:00
|
|
|
(output [cast_len, characters_len, episodes_len])
|