Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
export default async function untitled_jadeCarp(req: Request): Promise<Response> {
return Response.json(
[
{
"id": 1,
"name": "The Shawshank Redemption",
"description":
"Andy Dufresne, a banker convicted of murdering his wife and sentenced to life imprisonment at Shawshank State Penitentiary, maintains his innocence and begins a journey of hope and redemption.",
"rating": 8.9,
"image": "https://m.media-amazon.com/images/M/MV5BMTU4NzAyNTQ1OV5BMl5BanBnXkFtZTcwNTI1OTYzNzM@.jpg",
},
{
"id": 2,
"name": "The Godfather",
"description":
"The story of the Corleone family under patriarch Vito Corleone, focusing on the transformation of his youngest son, Michael, from reluctant family outsider to ruthless mafia boss.",
"rating": 9.2,
"image": "https://m.media-amazon.com/images/M/MV5BMTUyNjQwNzEtZDIzMC00ODc3LWI4MTgtNjQwOTQ5Mjc1M2E@.jpg",
},
{
"id": 3,
"name": "The Dark Knight",
"description":
"Batman raises his stakes in his war on crime when he targets the enigmatic criminal mastermind known as the Joker, a terrorist causing chaos in Gotham City.",
"rating": 9.0,
"image": "https://m.media-amazon.com/images/M/MV5BNDYxMzUxMTctNmRjOC00ZjFhLWFmNTEtNDJkNzZlMGM5MzQ@.jpg",
},
{
"id": 4,
"name": "12 Angry Men",
"description": "A jury in New York City deliberates the fate of a young man accused of murdering his father.",
"rating": 8.9,
"image": "https://m.media-amazon.com/images/M/MV5BMTQ0ODc4MDU4NF5BMl5BanBnXkFtZTgwNTY2NDEyNDE@.jpg",
},
{
"id": 5,
"name": "The Lord of the Rings: The Return of the King",
"description":
"Gandalf and Aragorn lead the Fellowship of the Ring to the slopes of Mount Doom to destroy the One Ring and defeat the Dark Lord Sauron.",
"rating": 8.9,
"image": "https://m.media-amazon.com/images/M/MV5BMjEyOTU3NzgxOTBeQTJeQWpwZ15BbWUuOTk5OTk3ODg2OTk@.jpg",
},
{
"id": 6,
"name": "The Dark Knight Rises",
"description":
"Batman, Bane, and Catwoman form an alliance to save Gotham City from the clutches of the villainous Lex Luthor and his army of mutated creatures.",
"rating": 8.4,
"image": "https://m.media-amazon.com/images/M/MV5BMTQ2NTQ5ODUwNTNeQTJeQWpwZ15BbWUuNTU5OTk2NzQ3OTg@.jpg",
},
{
"id": 7,
"name": "Schindler's List",
"description":
"The true story of Oskar Schindler, a German businessman who saved the lives of over 1,000 Jews during the Holocaust.",
"rating": 8.9,
"image": "https://m.media-amazon.com/images/M/MV5BMDU0OTg2NDcxNTVeQTJeQWpwZ15BbWUuMjM4MDUwNTQ0OTg@.jpg",
},
{
"id": 8,
"name": "Pulp Fiction",
"description":
"A series of interconnected and often violent stories in Los Angeles, told in a non-linear fashion.",
"rating": 8.9,
"image":
"https://m.media-amazon.com/images/M/MV5BMTYwNjAxOTQtNDQ4Mi00NDg3LWE1OWUtODMyYjU4NDZlNzQyXkEyXkFqcGdeQXVyMjMwOTEyMzE0@.jpg",
},
],
);
}
ion-movies.web.val.run
December 12, 2023